Skip to content

Commit

Permalink
Update framework submodule to tip of branch
Browse files Browse the repository at this point in the history
This allows us to use the mbedtls_framework python files moved there.

Signed-off-by: David Horstmann <[email protected]>
  • Loading branch information
davidhorstmann-arm committed May 3, 2024
1 parent 87bf7db commit 1e91186
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework
Submodule framework updated 42 files
+26 −0 CONTRIBUTING.md
+7 −2 README.md
+37 −0 dco.txt
+138 −0 docs/framework-design.md
+12 −0 psasim/.gitignore
+64 −0 psasim/Makefile
+60 −0 psasim/README.md
+78 −0 psasim/include/psa/client.h
+36 −0 psasim/include/psa/error.h
+17 −0 psasim/include/psa/lifecycle.h
+249 −0 psasim/include/psa/service.h
+15 −0 psasim/include/psasim/init.h
+380 −0 psasim/src/client.c
+23 −0 psasim/src/common.c
+85 −0 psasim/src/common.h
+655 −0 psasim/src/service.c
+12 −0 psasim/test/Makefile
+48 −0 psasim/test/client.c
+29 −0 psasim/test/manifest.json
+105 −0 psasim/test/server.c
+163 −0 psasim/tools/psa_autogen.py
+3 −0 scripts/mbedtls_framework/__init__.py
+237 −0 scripts/mbedtls_framework/asymmetric_key_data.py
+406 −0 scripts/mbedtls_framework/bignum_common.py
+896 −0 scripts/mbedtls_framework/bignum_core.py
+159 −0 scripts/mbedtls_framework/bignum_data.py
+102 −0 scripts/mbedtls_framework/bignum_mod.py
+242 −0 scripts/mbedtls_framework/bignum_mod_raw.py
+120 −0 scripts/mbedtls_framework/build_tree.py
+162 −0 scripts/mbedtls_framework/c_build_helper.py
+131 −0 scripts/mbedtls_framework/c_parsing_helper.py
+473 −0 scripts/mbedtls_framework/c_wrapper_generator.py
+112 −0 scripts/mbedtls_framework/crypto_data_tests.py
+568 −0 scripts/mbedtls_framework/crypto_knowledge.py
+875 −0 scripts/mbedtls_framework/ecp.py
+46 −0 scripts/mbedtls_framework/logging_util.py
+539 −0 scripts/mbedtls_framework/macro_collector.py
+161 −0 scripts/mbedtls_framework/psa_information.py
+206 −0 scripts/mbedtls_framework/psa_storage.py
+91 −0 scripts/mbedtls_framework/test_case.py
+224 −0 scripts/mbedtls_framework/test_data_generation.py
+28 −0 scripts/mbedtls_framework/typing_util.py

0 comments on commit 1e91186

Please sign in to comment.