Skip to content

Commit

Permalink
[#84] updating component submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
zlynch2 committed Sep 30, 2024
1 parent 3392e2e commit 70aef84
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion components/cryptolib
Submodule cryptolib updated 71 files
+68 −3 .github/workflows/build.yml
+1 −0 .gitignore
+8 −3 CMakeLists.txt
+5 −3 README.md
+ doc/CryptoLib_Indv_CLA.pdf
+88 −9 include/crypto.h
+23 −9 include/crypto_config.h
+56 −16 include/crypto_config_structs.h
+3 −0 include/crypto_error.h
+1 −1 include/crypto_print.h
+107 −24 include/crypto_structs.h
+1 −0 include/cryptography_interface.h
+1 −0 include/mc_interface.h
+20 −0 src/CMakeLists.txt
+208 −90 src/core/crypto.c
+1,579 −18 src/core/crypto_aos.c
+95 −49 src/core/crypto_config.c
+41 −67 src/core/crypto_error.c
+2 −2 src/core/crypto_print.c
+1,562 −936 src/core/crypto_tc.c
+1,140 −636 src/core/crypto_tm.c
+35 −30 src/crypto/kmc/base64url.c
+1 −4 src/crypto/kmc_stub/cryptography_interface_kmc.stub.c
+88 −48 src/crypto/libgcrypt/cryptography_interface_libgcrypt.template.c
+1 −4 src/crypto/libgcrypt_stub/cryptography_interface_libgcrypt.stub.c
+740 −0 src/crypto/wolfssl/cryptography_interface_wolfssl.template.c
+20 −0 src/crypto/wolfssl_stub/cryptography_interface_wolfssl.stub.c
+63 −0 src/mc/disabled/mc_interface_disabled.template.c
+29 −0 src/mc/disabled_stub/mc_interface_disabled_stub.template.c
+269 −90 src/sa/internal/sa_interface_inmemory.template.c
+2 −2 src/sa/mariadb/sa_interface_mariadb.template.c
+38 −7 support/Dockerfile
+3 −3 support/scripts/build_internal.sh
+4 −4 support/scripts/build_kmc.sh
+3 −3 support/scripts/build_minimal.sh
+12 −0 support/scripts/build_rhel.sh
+3 −3 support/scripts/build_support.sh
+12 −0 support/scripts/build_wolf.sh
+13 −0 support/scripts/docker_build.sh
+13 −0 support/scripts/docker_debug.sh
+1 −1 support/scripts/env.sh
+2 −3 support/scripts/internal_docker_build.sh
+2 −3 support/scripts/kmc_docker_build.sh
+21 −0 support/scripts/wolf_docker_build.sh
+460 −254 support/standalone/standalone.c
+26 −4 support/standalone/standalone.h
+6 −2 test/CMakeLists.txt
+1 −1 test/encryption_test.py
+3 −3 test/include/ut_aos_apply.h
+12 −34 test/include/ut_aos_process.h
+26 −26 test/kmc/ut_kmc_crypto.c
+18 −18 test/kmc/ut_kmc_crypto_auth_only.c
+38 −38 test/kmc/ut_kmc_crypto_cam.c
+20 −20 test/kmc/ut_kmc_crypto_with_mtls_sadb.c
+8 −8 test/kmc/ut_mariadb.c
+74 −74 test/kmc/ut_tc_kmc.c
+24 −24 test/performance/pt_auth_as.c
+24 −24 test/performance/pt_auth_enc_as.c
+24 −24 test/performance/pt_auth_enc_ps.c
+100 −84 test/unit/et_dt_validation.c
+597 −0 test/unit/ut_aos_apply.c
+789 −0 test/unit/ut_aos_process.c
+13 −12 test/unit/ut_crypto.c
+50 −63 test/unit/ut_crypto_config.c
+2 −2 test/unit/ut_mysql_m_tls_connection.c
+2 −2 test/unit/ut_mysql_tls_connection.c
+20 −20 test/unit/ut_sadb_err_cases_kmc_crypto.c
+43 −43 test/unit/ut_tc_apply.c
+23 −116 test/unit/ut_tc_process.c
+264 −284 test/unit/ut_tm_apply.c
+41 −20 test/unit/ut_tm_process.c
2 changes: 1 addition & 1 deletion components/syn
Submodule syn updated 1 files
+3 −3 fsw/cfs/CMakeLists.txt

0 comments on commit 70aef84

Please sign in to comment.