-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #35 from iw4x/dependabot/submodules/deps/libtomcry…
…pt-b96e96c Bump deps/libtomcrypt from `93f5348` to `b96e96c`
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule libtomcrypt
updated
33 files
+1 −0 | .github/workflows/main.yml | |
+28 −4 | CMakeLists.txt | |
+17 −7 | doc/crypt.tex | |
+2 −1 | helper.pl | |
+1 −2 | libtomcrypt.pc.in | |
+8 −0 | libtomcrypt_VS2008.vcproj | |
+5 −0 | makefile | |
+4 −1 | makefile.mingw | |
+4 −1 | makefile.msvc | |
+4 −2 | makefile.shared | |
+12 −2 | makefile.unix | |
+6 −3 | makefile_include.mk | |
+2 −0 | sources.cmake | |
+0 −18 | src/ciphers/aes/aes.c | |
+244 −0 | src/ciphers/aes/aes_desc.c | |
+367 −0 | src/ciphers/aes/aesni.c | |
+27 −6 | src/headers/tomcrypt_cfg.h | |
+28 −15 | src/headers/tomcrypt_cipher.h | |
+4 −0 | src/headers/tomcrypt_custom.h | |
+21 −16 | src/headers/tomcrypt_macros.h | |
+31 −31 | src/headers/tomcrypt_pk.h | |
+4 −0 | src/headers/tomcrypt_private.h | |
+3 −1 | src/math/fp/ltc_ecc_fp_mulmod.c | |
+6 −0 | src/misc/crypt/crypt.c | |
+1 −0 | src/misc/crypt/crypt_register_all_ciphers.c | |
+1 −1 | src/pk/asn1/der/choice/der_decode_choice.c | |
+3 −2 | src/pk/asn1/der/utf8/der_decode_utf8_string.c | |
+4 −1 | src/pk/ecc/ecc_get_key.c | |
+33 −18 | src/prngs/rng_get_bytes.c | |
+8 −0 | tests/cipher_hash_test.c | |
+32 −26 | tests/der_test.c | |
+26 −0 | tests/ecc_test.c | |
+1 −0 | tests/test.c |