Skip to content

Commit

Permalink
Build: Update Mbed-TLS to 2.28.9
Browse files Browse the repository at this point in the history
  • Loading branch information
zhanghai committed Sep 2, 2024
1 parent 3b81e2d commit c7d44f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion library/src/main/jni/external/mbedtls
Submodule mbedtls updated 72 files
+3 −0 .gitignore
+2 −2 BRANCHES.md
+24 −0 ChangeLog
+20 −20 docs/requirements.txt
+1 −1 doxygen/input/doc_mainpage.h
+1 −1 doxygen/mbedtls.doxyfile
+23 −11 include/mbedtls/config.h
+1 −1 include/mbedtls/ecdh.h
+1 −1 include/mbedtls/ecp.h
+4 −4 include/mbedtls/version.h
+6 −3 include/psa/crypto.h
+9 −1 include/psa/crypto_extra.h
+10 −8 library/CMakeLists.txt
+8 −7 library/common.h
+3 −1 library/entropy_poll.c
+1 −0 library/oid.c
+95 −12 library/psa_crypto.c
+1 −1 library/psa_crypto_cipher.c
+6 −7 library/psa_crypto_random_impl.h
+9 −9 library/psa_crypto_rsa.c
+35 −0 library/psa_crypto_slot_management.c
+1 −0 library/ssl_msg.c
+1 −0 library/ssl_tls.c
+1 −0 library/x509_crt.c
+2 −0 pkgconfig/.gitignore
+1 −1 pkgconfig/CMakeLists.txt
+20 −7 programs/ssl/ssl_mail_client.c
+1 −1 programs/test/metatest.c
+2 −0 programs/test/udp_proxy.c
+9 −0 scripts/config.py
+107 −23 scripts/mbedtls_dev/psa_information.py
+27 −3 scripts/mbedtls_dev/test_case.py
+7 −7 tests/.gitignore
+136 −68 tests/compat.sh
+5 −1 tests/include/test/drivers/key_management.h
+30 −20 tests/scripts/all.sh
+12 −0 tests/scripts/analyze_outcomes.py
+9 −6 tests/scripts/basic-build-test.sh
+1 −0 tests/scripts/check-generated-files.sh
+164 −0 tests/scripts/generate_config_tests.py
+59 −63 tests/scripts/generate_psa_tests.py
+2 −1 tests/scripts/test-ref-configs.pl
+2 −0 tests/src/drivers/test_driver_key_management.c
+6 −1 tests/src/test_helpers/ssl_helpers.c
+145 −75 tests/ssl-opt.sh
+9 −0 tests/suites/test_suite_config.crypto_combinations.data
+14 −0 tests/suites/test_suite_config.function
+1,755 −0 tests/suites/test_suite_config.mbedtls_boolean.data
+475 −0 tests/suites/test_suite_config.psa_boolean.data
+9 −0 tests/suites/test_suite_config.psa_combinations.data
+13 −0 tests/suites/test_suite_config.tls_combinations.data
+4 −4 tests/suites/test_suite_pkparse.data
+30 −7 tests/suites/test_suite_psa_crypto.data
+5 −1 tests/suites/test_suite_psa_crypto_driver_wrappers.data
+21 −4 tests/suites/test_suite_psa_crypto_driver_wrappers.function
+183 −143 tests/suites/test_suite_psa_crypto_generate_key.generated.data
+2 −0 tests/suites/test_suite_psa_crypto_init.function
+22 −4 tests/suites/test_suite_psa_crypto_not_supported.function
+361 −301 tests/suites/test_suite_psa_crypto_not_supported.generated.data
+2 −2 tests/suites/test_suite_psa_crypto_op_fail.function
+19,618 −15,704 tests/suites/test_suite_psa_crypto_op_fail.generated.data
+21 −0 tests/suites/test_suite_psa_crypto_op_fail.misc.data
+10 −1 tests/suites/test_suite_psa_crypto_se_driver_hal.data
+17 −4 tests/suites/test_suite_psa_crypto_se_driver_hal.function
+2 −2 tests/suites/test_suite_psa_crypto_se_driver_hal_mocks.function
+17 −2 tests/suites/test_suite_psa_crypto_slot_management.data
+113 −4 tests/suites/test_suite_psa_crypto_slot_management.function
+5,203 −4,279 tests/suites/test_suite_psa_crypto_storage_format.current.data
+5,351 −4,391 tests/suites/test_suite_psa_crypto_storage_format.v0.data
+2 −2 tests/suites/test_suite_version.data
+1 −1 tests/suites/test_suite_x509parse.data
+1 −1 tests/suites/test_suite_x509parse.function

0 comments on commit c7d44f6

Please sign in to comment.