Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump deps/libtomcrypt from cbb01b3 to 2e9f2b5 #807

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deps/libtomcrypt
Submodule libtomcrypt updated 87 files
+0 −4 .ci/build.sh
+0 −4 .ci/check_source.sh
+0 −4 .ci/clang-tidy.sh
+0 −4 .ci/coverage.sh
+0 −4 .ci/coverage_more.sh
+0 −4 .ci/meta_builds.sh
+0 −4 .ci/printinfo.sh
+0 −4 .ci/run.sh
+0 −4 .ci/testbuild.sh
+0 −4 .ci/valgrind.sh
+4 −0 .github/workflows/main.yml
+3 −2 .gitignore
+160 −90 CMakeLists.txt
+2 −2 README.md
+241 −0 cmake-format.py
+40 −0 contrib/sbom.cdx.json
+1 −3 coverity.sh
+68 −63 demos/CMakeLists.txt
+21 −31 demos/aesgcm.c
+34 −22 demos/crypt.c
+14 −9 demos/hashsum.c
+34 −0 demos/ltc
+83 −56 demos/openssl-enc.c
+15 −1 demos/pem-info.c
+4 −0 demos/small.c
+83 −21 demos/timing.c
+26 −7 demos/tv_gen.c
+224 −62 doc/crypt.tex
+0 −4 helper.pl
+2 −2 libtomcrypt.pc.in
+8 −0 libtomcrypt_VS2008.vcproj
+3 −5 makefile
+7 −11 makefile.mingw
+7 −11 makefile.msvc
+16 −13 makefile.shared
+9 −12 makefile.unix
+16 −23 makefile_include.mk
+0 −5 notes/etc/saferp_optimizer.c
+0 −6 notes/etc/whirlgen.c
+0 −5 notes/etc/whirltest.c
+1 −0 sources.cmake
+1 −1 src/encauth/chachapoly/chacha20poly1305_memory.c
+1 −1 src/encauth/gcm/gcm_gf_mult.c
+747 −0 src/encauth/siv/siv.c
+4 −0 src/headers/tomcrypt.h
+3 −0 src/headers/tomcrypt_cfg.h
+1 −0 src/headers/tomcrypt_custom.h
+22 −1 src/headers/tomcrypt_mac.h
+49 −49 src/headers/tomcrypt_math.h
+15 −10 src/headers/tomcrypt_private.h
+27 −17 src/mac/omac/omac_memory_multi.c
+45 −45 src/math/gmp_desc.c
+40 −40 src/math/ltm_desc.c
+156 −138 src/math/tfm_desc.c
+3 −0 src/misc/crypt/crypt.c
+5 −6 src/misc/error_to_string.c
+2 −0 src/misc/pem/pem.c
+1 −1 src/misc/ssh/ssh_decode_sequence_multi.c
+5 −5 src/pk/dsa/dsa_set.c
+1 −1 src/pk/dsa/dsa_sign_hash.c
+1 −1 src/pk/dsa/dsa_verify_hash.c
+1 −1 src/pk/ecc/ecc_ansi_x963_import.c
+7 −7 src/pk/ecc/ecc_recover_key.c
+1 −1 src/pk/ecc/ecc_set_key.c
+3 −3 src/pk/ecc/ecc_sign_hash.c
+7 −7 src/pk/ecc/ecc_verify_hash.c
+3 −3 src/pk/ecc/ltc_ecc_import_point.c
+1 −1 src/pk/ecc/ltc_ecc_is_point_at_infinity.c
+1 −1 src/pk/ecc/ltc_ecc_map.c
+2 −2 src/pk/ecc/ltc_ecc_mul2add.c
+2 −1 src/pk/ecc/ltc_ecc_mulmod.c
+1 −1 src/pk/ecc/ltc_ecc_mulmod_timing.c
+2 −1 src/pk/ecc/ltc_ecc_projective_add_point.c
+1 −1 src/pk/ecc/ltc_ecc_projective_dbl_point.c
+2 −2 src/pk/rsa/rsa_exptmod.c
+1 −1 src/pk/rsa/rsa_make_key.c
+8 −8 src/pk/rsa/rsa_set.c
+5 −3 src/pk/rsa/rsa_sign_hash.c
+2 −2 src/stream/sober128/sober128_stream.c
+0 −4 testme.sh
+19 −30 tests/CMakeLists.txt
+1 −1 tests/bcrypt_test.c
+38 −35 tests/der_test.c
+10 −10 tests/ecc_test.c
+3 −0 tests/mac_test.c
+1 −1 tests/multi_test.c
+0 −4 updatemakes.sh