-
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.
Merge branch 'main' into prebuild-aws-lc
- Loading branch information
Showing
39 changed files
with
478 additions
and
276 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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
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
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
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
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
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
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
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
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
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 aws-c-auth
updated
24 files
+15 −3 | .github/workflows/ci.yml | |
+4 −6 | .github/workflows/clang-format.yml | |
+1 −0 | .gitignore | |
+47 −0 | format-check.py | |
+0 −24 | format-check.sh | |
+1 −0 | include/aws/auth/auth.h | |
+15 −0 | include/aws/auth/credentials.h | |
+8 −8 | include/aws/auth/private/credentials_utils.h | |
+3 −0 | source/auth.c | |
+25 −0 | source/aws_signing.c | |
+3 −1 | source/credentials_provider_cached.c | |
+1 −16 | source/credentials_provider_default_chain.c | |
+104 −5 | source/credentials_provider_ecs.c | |
+17 −2 | source/credentials_provider_process.c | |
+44 −5 | source/credentials_provider_profile.c | |
+37 −12 | source/credentials_provider_sts.c | |
+1 −0 | source/credentials_provider_sts_web_identity.c | |
+49 −7 | source/credentials_utils.c | |
+17 −9 | tests/CMakeLists.txt | |
+92 −17 | tests/credentials_provider_ecs_tests.c | |
+75 −26 | tests/credentials_provider_process_tests.c | |
+273 −108 | tests/credentials_provider_sts_tests.c | |
+42 −0 | tests/credentials_provider_sts_web_identity_tests.c | |
+58 −0 | tests/credentials_utils_tests.c |
Submodule aws-c-common
updated
7 files
Submodule aws-c-compression
updated
5 files
+12 −3 | .github/workflows/ci.yml | |
+4 −6 | .github/workflows/clang-format.yml | |
+47 −0 | format-check.py | |
+0 −24 | format-check.sh | |
+1 −1 | source/compression.c |
Submodule aws-c-event-stream
updated
6 files
+12 −3 | .github/workflows/ci.yml | |
+4 −8 | .github/workflows/clang-format.yml | |
+7 −4 | .github/workflows/stale_issue.yml | |
+47 −0 | format-check.py | |
+0 −24 | format-check.sh | |
+4 −2 | include/aws/event-stream/event_stream.h |
Submodule aws-c-http
updated
16 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 | |
+1 −1 | integration-testing/http_client_test.py | |
+156 −47 | source/connection_manager.c | |
+123 −23 | source/h1_connection.c | |
+6 −0 | source/http.c | |
+61 −59 | source/websocket.c | |
+9 −0 | tests/CMakeLists.txt | |
+0 −3 | tests/test_connection.c | |
+131 −2 | tests/test_connection_manager.c | |
+214 −0 | tests/test_h1_client.c | |
+135 −36 | tests/test_tls.c | |
+32 −0 | tests/test_websocket_handler.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-c-mqtt
updated
45 files
Submodule aws-c-s3
updated
19 files
+16 −3 | .github/workflows/ci.yml | |
+5 −5 | include/aws/s3/private/s3_meta_request_impl.h | |
+11 −0 | include/aws/s3/private/s3_util.h | |
+2 −0 | include/aws/s3/s3.h | |
+62 −10 | include/aws/s3/s3_client.h | |
+2 −0 | source/s3.c | |
+20 −10 | source/s3_auto_ranged_get.c | |
+4 −10 | source/s3_auto_ranged_put.c | |
+1 −0 | source/s3_buffer_pool.c | |
+5 −16 | source/s3_copy_object.c | |
+21 −10 | source/s3_default_meta_request.c | |
+187 −184 | source/s3_endpoint_resolver/aws_s3_endpoint_resolver_partition.c | |
+186 −158 | source/s3_meta_request.c | |
+56 −0 | source/s3_util.c | |
+7 −0 | tests/CMakeLists.txt | |
+1 −0 | tests/s3_buffer_pool_tests.c | |
+256 −7 | tests/s3_data_plane_tests.c | |
+65 −17 | tests/s3_tester.c | |
+7 −0 | tests/s3_tester.h |
Submodule aws-c-sdkutils
updated
15 files
Submodule aws-checksums
updated
26 files
+105 −15 | .github/workflows/ci.yml | |
+4 −6 | .github/workflows/clang-format.yml | |
+60 −49 | CMakeLists.txt | |
+29 −0 | bin/benchmark/CMakeLists.txt | |
+133 −0 | bin/benchmark/main.c | |
+4 −0 | builder.json | |
+47 −0 | format-check.py | |
+0 −24 | format-check.sh | |
+42 −3 | include/aws/checksums/crc.h | |
+51 −0 | include/aws/checksums/private/crc64_priv.h | |
+28 −11 | include/aws/checksums/private/crc_priv.h | |
+24 −0 | include/aws/checksums/private/crc_util.h | |
+4 −4 | source/arm/crc32c_arm.c | |
+208 −0 | source/arm/crc64_arm.c | |
+35 −9 | source/crc.c | |
+131 −0 | source/crc64.c | |
+579 −0 | source/crc64_sw.c | |
+0 −18 | source/generic/crc32c_null.c | |
+3 −14 | source/intel/asm/crc32c_sse42_asm.c | |
+245 −0 | source/intel/intrin/crc32c_sse42_avx512.c | |
+130 −0 | source/intel/intrin/crc64nvme_avx512.c | |
+147 −0 | source/intel/intrin/crc64nvme_clmul.c | |
+0 −77 | source/intel/visualc/visualc_crc32c_sse42.c | |
+3 −0 | tests/CMakeLists.txt | |
+144 −0 | tests/crc64_test.c | |
+129 −43 | tests/crc_test.c |
Submodule aws-lc
updated
from 47333e to d3a598
Submodule s2n
updated
from 073c7b to 08d413
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
awscrt.checksums | ||
================ | ||
|
||
.. automodule:: awscrt.checksums | ||
:members: |
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 |
---|---|---|
|
@@ -12,6 +12,7 @@ API Reference | |
:maxdepth: 2 | ||
|
||
api/auth | ||
api/checksums | ||
api/common | ||
api/crypto | ||
api/exceptions | ||
|
Oops, something went wrong.