-
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.
- Loading branch information
Showing
11 changed files
with
11 additions
and
11 deletions.
There are no files selected for viewing
Submodule aws-c-auth
updated
10 files
Submodule aws-c-cal
updated
26 files
+10 −1 | .github/workflows/ci.yml | |
+18 −0 | .github/workflows/handle-stale-discussions.yml | |
+1 −9 | CMakeLists.txt | |
+1 −1 | bin/produce_x_platform_fuzz_corpus/CMakeLists.txt | |
+1 −1 | bin/run_x_platform_fuzz_corpus/CMakeLists.txt | |
+1 −1 | bin/sha256_profile/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 | |
+390 −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-common
updated
11 files
+5 −5 | .github/workflows/proof_ci.yaml | |
+11 −0 | include/aws/common/error.h | |
+2 −0 | include/aws/common/file.h | |
+3 −2 | include/aws/common/hash_table.h | |
+16 −7 | source/common.c | |
+12 −4 | source/error.c | |
+47 −36 | source/file.c | |
+2 −2 | source/log_writer.c | |
+2 −2 | source/logging.c | |
+2 −2 | source/posix/file.c | |
+2 −2 | source/windows/file.c |
Submodule aws-c-http
updated
5 files
+18 −0 | .github/workflows/handle-stale-discussions.yml | |
+1 −1 | bin/elasticurl/CMakeLists.txt | |
+0 −9 | bin/elasticurl/main.c | |
+8 −8 | tests/resources/unittests.crt | |
+ − | tests/resources/unittests.p12 |
Submodule aws-c-io
updated
28 files
+8 −8 | .github/workflows/ci.yml | |
+18 −0 | .github/workflows/handle-stale-discussions.yml | |
+3 −2 | .github/workflows/proof-alarm.yml | |
+3 −0 | .github/workflows/stale_issue.yml | |
+1 −0 | .gitignore | |
+1 −1 | README.md | |
+4 −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 | |
+23 −31 | source/darwin/darwin_pki_utils.c | |
+2 −3 | source/darwin/secure_transport_tls_channel_handler.c | |
+8 −1 | source/io.c | |
+8 −0 | source/linux/epoll_event_loop.c | |
+437 −0 | source/pem.c | |
+0 −98 | source/pem_utils.c | |
+0 −224 | source/pki_utils.c | |
+5 −5 | source/posix/socket.c | |
+17 −2 | source/s2n/s2n_tls_channel_handler.c | |
+3 −0 | source/stream.c | |
+20 −0 | source/tracing.c | |
+8 −8 | source/windows/iocp/socket.c | |
+3 −3 | source/windows/secure_channel_tls_handler.c | |
+20 −34 | source/windows/windows_pki_utils.c | |
+354 −220 | tests/pem_test.c | |
+0 −145 | tests/pem_utils_test.c |
Submodule aws-c-mqtt
updated
20 files
+18 −0 | .github/workflows/handle-stale-discussions.yml | |
+9 −0 | include/aws/mqtt/mqtt.h | |
+3 −0 | include/aws/mqtt/private/packets.h | |
+0 −8 | include/aws/mqtt/private/v5/mqtt5_utils.h | |
+0 −12 | include/aws/mqtt/v5/mqtt5_client.h | |
+46 −6 | source/client.c | |
+42 −1 | source/mqtt.c | |
+4 −0 | source/packets.c | |
+11 −11 | source/v5/mqtt5_options_storage.c | |
+49 −44 | source/v5/mqtt5_to_mqtt3_adapter.c | |
+0 −53 | source/v5/mqtt5_utils.c | |
+19 −2 | tests/CMakeLists.txt | |
+158 −0 | tests/shared_utils_tests.c | |
+440 −23 | tests/v3/connection_state_test.c | |
+20 −6 | tests/v3/mqtt_mock_server_handler.c | |
+14 −0 | tests/v3/mqtt_mock_server_handler.h | |
+136 −0 | tests/v3/packet_encoding_test.c | |
+44 −7 | tests/v3/topic_tree_test.c | |
+161 −0 | tests/v5/mqtt5_to_mqtt3_adapter_tests.c | |
+0 −149 | tests/v5/mqtt5_utils_tests.c |
Submodule aws-c-s3
updated
27 files
Submodule aws-lc
updated
from 1dd5cf to e42a4e
Submodule s2n
updated
from de9878 to 4654fe