-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into string_array
- Loading branch information
Showing
7 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
Submodule aws-c-auth
updated
18 files
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-http
updated
14 files
+15 −5 | .github/workflows/ci.yml | |
+3 −0 | .github/workflows/stale_issue.yml | |
+15 −0 | include/aws/http/connection_manager.h | |
+2 −0 | include/aws/http/http.h | |
+14 −2 | include/aws/http/private/h1_connection.h | |
+155 −47 | source/connection_manager.c | |
+123 −23 | source/h1_connection.c | |
+6 −0 | source/http.c | |
+5 −0 | source/websocket.c | |
+7 −0 | tests/CMakeLists.txt | |
+0 −3 | tests/test_connection.c | |
+82 −2 | tests/test_connection_manager.c | |
+214 −0 | tests/test_h1_client.c | |
+135 −36 | tests/test_tls.c |
Submodule aws-c-io
updated
13 files
+30 −3 | .github/workflows/ci.yml | |
+0 −4 | CMakeLists.txt | |
+6 −0 | include/aws/io/private/tls_channel_handler_shared.h | |
+1 −0 | include/aws/io/socket.h | |
+2 −2 | source/channel.c | |
+123 −52 | source/darwin/secure_transport_tls_channel_handler.c | |
+1 −0 | source/posix/socket.c | |
+115 −53 | source/s2n/s2n_tls_channel_handler.c | |
+1 −2 | source/socket_channel_handler.c | |
+151 −86 | source/windows/secure_channel_tls_handler.c | |
+2 −0 | tests/CMakeLists.txt | |
+2 −2 | tests/socket_test.c | |
+341 −115 | tests/tls_handler_test.c |
Submodule aws-lc
updated
from 05d3bf to 057477
Submodule s2n
updated
from 073c7b to 79c0f1