Skip to content

Commit

Permalink
[#352] Update CryptoLib to 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Donnie-Ice committed Oct 30, 2024
1 parent 32a7034 commit 74ee29c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/cryptolib
Submodule cryptolib updated 69 files
+148 −22 .github/workflows/build.yml
+246 −0 .github/workflows/codeql.yml
+75 −1 CMakeLists.txt
+35 −0 Makefile
+2 −0 README.md
+83 −0 doc/requirements.md
+29 −13 include/crypto.h
+4 −0 include/crypto_config.h
+5 −3 include/crypto_config_structs.h
+6 −0 include/crypto_error.h
+12 −11 include/crypto_structs.h
+1 −0 include/cryptography_interface.h
+20 −6 src/CMakeLists.txt
+94 −38 src/core/crypto.c
+42 −44 src/core/crypto_aos.c
+202 −122 src/core/crypto_config.c
+5 −0 src/core/crypto_error.c
+0 −4 src/core/crypto_mc.c
+6 −5 src/core/crypto_print.c
+28 −39 src/core/crypto_tc.c
+73 −70 src/core/crypto_tm.c
+20 −0 src/crypto/custom_stub/cryptography_interface_custom_stub.template.c
+8 −6 src/crypto/kmc/cryptography_interface_kmc_crypto_service.template.c
+20 −2 src/crypto/libgcrypt/cryptography_interface_libgcrypt.template.c
+1 −0 src/crypto/wolfssl/cryptography_interface_wolfssl.template.c
+1 −2 src/key/custom_stub/key_interface_custom_stub.template.c
+105 −0 src/key/internal/key_interface_internal.template.c
+2 −2 src/mc/internal/mc_interface_internal.template.c
+532 −262 src/sa/internal/sa_interface_inmemory.template.c
+5 −6 src/sa/mariadb/sa_interface_mariadb.template.c
+41 −26 support/Dockerfile
+3 −1 support/scripts/build_internal.sh
+3 −1 support/scripts/build_kmc.sh
+2 −0 support/scripts/build_minimal.sh
+4 −1 support/scripts/build_rhel.sh
+2 −0 support/scripts/build_support.sh
+3 −1 support/scripts/build_wolf.sh
+1 −1 support/scripts/docker_debug.sh
+4 −1 support/scripts/env.sh
+2 −2 support/scripts/internal_docker_build.sh
+2 −2 support/scripts/kmc_docker_build.sh
+12 −0 support/scripts/update_env.sh
+2 −2 support/scripts/wolf_docker_build.sh
+1 −1 support/standalone/standalone.c
+28 −15 test/CMakeLists.txt
+2 −0 test/core/crypto_sequence.c
+18 −0 test/include/ut_aes_gcm_siv.h
+35 −0 test/include/ut_sa_save.h
+415 −415 test/kmc/ut_kmc_crypto.c
+487 −487 test/kmc/ut_kmc_crypto_auth_only.c
+625 −625 test/kmc/ut_kmc_crypto_cam.c
+149 −149 test/kmc/ut_kmc_crypto_with_mtls_sadb.c
+520 −520 test/kmc/ut_mariadb.c
+1,081 −1,071 test/kmc/ut_tc_kmc.c
+439 −98 test/unit/et_dt_validation.c
+524 −0 test/unit/ut_aes_gcm_siv.c
+105 −39 test/unit/ut_aos_apply.c
+283 −87 test/unit/ut_aos_process.c
+30 −7 test/unit/ut_crypto.c
+14 −10 test/unit/ut_crypto_config.c
+7 −0 test/unit/ut_crypto_mc.c
+7 −2 test/unit/ut_mysql_m_tls_connection.c
+7 −2 test/unit/ut_mysql_tls_connection.c
+782 −0 test/unit/ut_sa_save.c
+15 −8 test/unit/ut_sadb_err_cases_kmc_crypto.c
+208 −89 test/unit/ut_tc_apply.c
+192 −25 test/unit/ut_tc_process.c
+141 −80 test/unit/ut_tm_apply.c
+155 −45 test/unit/ut_tm_process.c

0 comments on commit 74ee29c

Please sign in to comment.