-
Notifications
You must be signed in to change notification settings - Fork 14
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 #249 from Laupetin/dependabot/submodules/thirdpart…
…y/libtomcrypt-6865b9f chore(deps): bump thirdparty/libtomcrypt from `12bf723` to `6865b9f`
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule libtomcrypt
updated
32 files
+1 −1 | .github/workflows/main.yml | |
+4 −0 | README.md | |
+2 −1 | doc/crypt.tex | |
+4 −0 | libtomcrypt_VS2008.vcproj | |
+8 −8 | makefile.mingw | |
+8 −8 | makefile.msvc | |
+8 −8 | makefile.unix | |
+8 −8 | makefile_include.mk | |
+233 −0 | notes/ccm_tv.txt | |
+54 −0 | notes/cipher_tv.txt | |
+35 −0 | notes/eax_tv.txt | |
+34 −0 | notes/gcm_tv.txt | |
+35 −0 | notes/ocb3_tv.txt | |
+35 −0 | notes/ocb_tv.txt | |
+35 −0 | notes/omac_tv.txt | |
+35 −0 | notes/pmac_tv.txt | |
+1 −0 | sources.cmake | |
+6 −6 | src/ciphers/aes/aes_desc.c | |
+4 −1 | src/ciphers/aes/aesni.c | |
+377 −0 | src/ciphers/sm4.c | |
+6 −5 | src/headers/tomcrypt_cfg.h | |
+20 −1 | src/headers/tomcrypt_cipher.h | |
+2 −3 | src/headers/tomcrypt_custom.h | |
+1 −5 | src/headers/tomcrypt_private.h | |
+4 −1 | src/misc/crypt/crypt.c | |
+3 −0 | src/misc/crypt/crypt_register_all_ciphers.c | |
+3 −0 | src/misc/crypt/crypt_sizes.c | |
+2 −2 | src/misc/pem/pem_pkcs.c | |
+4 −4 | src/misc/pem/pem_read.c | |
+2 −2 | src/misc/pem/pem_ssh.c | |
+1 −1 | tests/cipher_hash_test.c | |
+3 −0 | tests/test.c |