-
Notifications
You must be signed in to change notification settings - Fork 2
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
10 changed files
with
10 additions
and
10 deletions.
There are no files selected for viewing
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-cal
updated
26 files
+33 −6 | .github/workflows/ci.yml | |
+4 −6 | .github/workflows/clang-format.yml | |
+5 −1 | CMakeLists.txt | |
+22 −1 | builder.json | |
+47 −0 | format-check.py | |
+0 −25 | format-check.sh | |
+2 −2 | include/aws/cal/private/symmetric_cipher_priv.h | |
+32 −26 | include/aws/cal/symmetric_cipher.h | |
+1 −1 | source/cal.c | |
+16 −15 | source/darwin/commoncrypto_aes.c | |
+8 −10 | source/ecc.c | |
+4 −4 | source/rsa.c | |
+10 −8 | source/symmetric_cipher.c | |
+38 −34 | source/unix/openssl_aes.c | |
+117 −26 | source/unix/openssl_platform_init.c | |
+150 −124 | source/windows/bcrypt_aes.c | |
+3 −0 | tests/CMakeLists.txt | |
+235 −13 | 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
95 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-http
updated
30 files
Submodule aws-c-io
updated
25 files
+40 −5 | .github/workflows/ci.yml | |
+4 −6 | .github/workflows/clang-format.yml | |
+15 −8 | CMakeLists.txt | |
+47 −0 | format-check.py | |
+0 −24 | format-check.sh | |
+2 −2 | include/aws/io/channel.h | |
+3 −4 | include/aws/io/channel_bootstrap.h | |
+3 −4 | include/aws/io/event_loop.h | |
+6 −0 | include/aws/io/private/tls_channel_handler_shared.h | |
+13 −0 | include/aws/io/socket.h | |
+4 −5 | include/aws/io/tls_channel_handler.h | |
+13 −20 | source/channel.c | |
+126 −60 | source/darwin/secure_transport_tls_channel_handler.c | |
+1 −1 | source/io.c | |
+2 −5 | source/message_pool.c | |
+93 −3 | source/posix/socket.c | |
+125 −59 | source/s2n/s2n_tls_channel_handler.c | |
+1 −7 | source/socket_channel_handler.c | |
+1 −1 | source/windows/iocp/iocp_event_loop.c | |
+19 −0 | source/windows/iocp/socket.c | |
+275 −206 | source/windows/secure_channel_tls_handler.c | |
+4 −0 | tests/CMakeLists.txt | |
+1 −1 | tests/socket_handler_test.c | |
+82 −7 | tests/socket_test.c | |
+368 −128 | tests/tls_handler_test.c |
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 4e54dd to 8b2ebf
Submodule s2n
updated
from 114cca to ffe0bf