-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump aws-crt-cpp version to 0.26.8 (#711)
* Bump aws-crt-cpp version to 0.26.8 * update
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule aws-crt-cpp
updated
18 files
+1 −1 | VERSION | |
+1 −1 | crt/s2n | |
+6 −0 | include/aws/crt/Api.h | |
+2 −2 | include/aws/crt/Types.h | |
+18 −0 | include/aws/crt/crypto/HMAC.h | |
+51 −7 | include/aws/crt/crypto/Hash.h | |
+18 −0 | include/aws/crt/crypto/SecureRandom.h | |
+149 −0 | include/aws/crt/crypto/SymmetricCipher.h | |
+31 −0 | source/Api.cpp | |
+32 −32 | source/Types.cpp | |
+46 −20 | source/crypto/HMAC.cpp | |
+61 −30 | source/crypto/Hash.cpp | |
+21 −0 | source/crypto/SecureRandom.cpp | |
+167 −0 | source/crypto/SymmetricCipher.cpp | |
+10 −0 | tests/CMakeLists.txt | |
+1 −0 | tests/HMACTest.cpp | |
+68 −0 | tests/HashTest.cpp | |
+200 −0 | tests/SymmetricCipherTest.cpp |