-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
85c241a
commit a269573
Showing
4 changed files
with
4 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -153,7 +153,6 @@ jobs: | |
- debug | ||
- release | ||
arch: | ||
- x64 | ||
- arm64 | ||
steps: | ||
- name: Check out files | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule libtomcrypt
updated
27 files
+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 | |
+375 −0 | src/ciphers/sm4.c | |
+3 −0 | src/encauth/ccm/ccm_add_nonce.c | |
+19 −0 | src/headers/tomcrypt_cipher.h | |
+2 −0 | src/headers/tomcrypt_custom.h | |
+1 −1 | src/headers/tomcrypt_private.h | |
+3 −0 | 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 | |
+3 −0 | tests/test.c |
Submodule zlib
updated
5 files
+1 −1 | .github/workflows/cmake.yml | |
+1 −1 | .github/workflows/configure.yml | |
+2 −2 | contrib/minizip/ioapi.h | |
+4 −4 | examples/zran.c | |
+1 −1 | inflate.c |