-
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.
Fix sigv4a on MacOS 14+
- Loading branch information
Showing
4 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
Submodule aws-c-cal
updated
23 files
+10 −1 | .github/workflows/ci.yml | |
+18 −0 | .github/workflows/handle-stale-discussions.yml | |
+1 −0 | CMakeLists.txt | |
+5 −2 | builder.json | |
+12 −15 | cmake/aws-c-cal-config.cmake | |
+4 −0 | include/aws/cal/cal.h | |
+5 −0 | include/aws/cal/ecc.h | |
+19 −2 | include/aws/cal/private/der.h | |
+118 −0 | include/aws/cal/private/rsa.h | |
+165 −0 | include/aws/cal/rsa.h | |
+1 −1 | include/aws/cal/symmetric_cipher.h | |
+11 −4 | source/cal.c | |
+62 −9 | source/darwin/securityframework_ecc.c | |
+466 −0 | source/darwin/securityframework_rsa.c | |
+28 −7 | source/der.c | |
+282 −0 | source/rsa.c | |
+393 −0 | source/unix/openssl_rsa.c | |
+4 −4 | source/windows/bcrypt_ecc.c | |
+415 −0 | source/windows/bcrypt_rsa.c | |
+22 −0 | tests/CMakeLists.txt | |
+139 −3 | tests/der_test.c | |
+82 −0 | tests/ecc_test.c | |
+691 −0 | tests/rsa_test.c |
Submodule aws-c-io
updated
27 files
+5 −0 | .gitattributes | |
+8 −8 | .github/workflows/ci.yml | |
+18 −0 | .github/workflows/handle-stale-discussions.yml | |
+3 −2 | .github/workflows/proof-alarm.yml | |
+1 −0 | .gitignore | |
+1 −1 | README.md | |
+2 −0 | include/aws/io/io.h | |
+1 −0 | include/aws/io/logging.h | |
+99 −0 | include/aws/io/pem.h | |
+0 −30 | include/aws/io/private/pki_utils.h | |
+22 −0 | include/aws/io/private/tracing.h | |
+15 −11 | source/channel_bootstrap.c | |
+24 −32 | source/darwin/darwin_pki_utils.c | |
+4 −1 | source/io.c | |
+8 −0 | source/linux/epoll_event_loop.c | |
+436 −0 | source/pem.c | |
+0 −98 | source/pem_utils.c | |
+0 −224 | source/pki_utils.c | |
+5 −5 | source/posix/socket.c | |
+3 −0 | source/stream.c | |
+20 −0 | source/tracing.c | |
+8 −8 | source/windows/iocp/socket.c | |
+20 −34 | source/windows/windows_pki_utils.c | |
+1 −0 | tests/CMakeLists.txt | |
+432 −220 | tests/pem_test.c | |
+0 −145 | tests/pem_utils_test.c | |
+23 −0 | tests/resources/testparse_crlf.crt |
Submodule aws-c-mqtt
updated
2 files
+14 −0 | include/aws/mqtt/v5/mqtt5_client.h | |
+18 −0 | source/v5/mqtt5_utils.c |
Submodule s2n
updated
from f7930e to 4654fe