-
Notifications
You must be signed in to change notification settings - Fork 42
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
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
Submodule aws-c-cal
updated
13 files
+24 −6 | .github/workflows/ci.yml | |
+5 −1 | CMakeLists.txt | |
+17 −1 | builder.json | |
+47 −0 | source/unix/openssl_platform_init.c | |
+50 −0 | tests/aes256_test.c | |
+46 −0 | tests/der_test.c | |
+20 −13 | tests/ecc_test.c | |
+5 −5 | tests/md5_test.c | |
+16 −14 | tests/rsa_test.c | |
+8 −8 | tests/sha1_test.c | |
+5 −5 | tests/sha256_hmac_test.c | |
+8 −8 | tests/sha256_test.c | |
+35 −2 | tests/test_case_helper.h |
Submodule aws-c-common
updated
13 files
+17 −8 | .github/workflows/ci.yml | |
+2 −2 | .github/workflows/proof_ci_resources/config.yaml | |
+2 −1 | README.md | |
+19 −4 | cmake/AwsCheckHeaders.cmake | |
+73 −0 | cmake/AwsPrebuildDependency.cmake | |
+6 −4 | cmake/AwsSanitizers.cmake | |
+1 −1 | include/aws/common/array_list.inl | |
+68 −1 | include/aws/common/json.h | |
+8 −1 | include/aws/common/math.inl | |
+50 −41 | source/json.c | |
+19 −0 | source/posix/thread.c | |
+2 −18 | source/windows/device_random.c | |
+12 −7 | tests/json_test.c |