Skip to content

Commit

Permalink
latest submodules with fix for system info
Browse files Browse the repository at this point in the history
  • Loading branch information
waahm7 committed Nov 15, 2023
1 parent 2b5fc3b commit ab95bdb
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ var awsCCommonPlatformExcludes = ["source/android",
"AWSCRTAndroidTestRunner", "verification",
"include/aws/common/",
"scripts/appverifier_ctest.py",
"scripts/appverifier_xml.py"] + excludesFromAll
"scripts/appverifier_xml.py",
"source/linux/system_info.c",
"bin/"] + excludesFromAll

// includes arch/generic
awsCCommonPlatformExcludes.append("source/arch/intel")
Expand Down
2 changes: 1 addition & 1 deletion aws-common-runtime/s2n
Submodule s2n updated 37 files
+4 −2 .github/workflows/ci_freebsd.yml
+1 −1 .github/workflows/dashboard.yml
+9 −5 api/s2n.h
+9 −6 bindings/rust/bench/benches/handshake.rs
+14 −14 bindings/rust/bench/benches/resumption.rs
+9 −6 bindings/rust/bench/benches/throughput.rs
+106 −102 bindings/rust/bench/src/harness.rs
+24 −20 bindings/rust/bench/src/openssl.rs
+28 −24 bindings/rust/bench/src/rustls.rs
+52 −50 bindings/rust/bench/src/s2n_tls.rs
+1 −1 bindings/rust/s2n-tls-sys/templates/Cargo.template
+2 −2 bindings/rust/s2n-tls-tokio/Cargo.toml
+2 −2 bindings/rust/s2n-tls/Cargo.toml
+2 −1 codebuild/bin/install_cppcheck.sh
+7 −9 docs/USAGE-GUIDE.md
+1 −1 tests/fuzz/s2n_client_cert_verify_recv_test.c
+1 −1 tests/fuzz/s2n_tls13_cert_verify_recv_test.c
+4 −4 tests/integrationv2/test_version_negotiation.py
+1 −2 tests/unit/s2n_client_signature_algorithms_extension_test.c
+390 −0 tests/unit/s2n_connection_protocol_versions_test.c
+1 −1 tests/unit/s2n_server_signature_algorithms_extension_test.c
+244 −238 tests/unit/s2n_signature_algorithms_test.c
+1 −1 tests/unit/s2n_tls13_cert_request_test.c
+125 −0 tests/unit/s2n_x509_validator_test.c
+8 −1 tls/extensions/s2n_client_signature_algorithms.c
+43 −11 tls/extensions/s2n_client_supported_versions.c
+3 −0 tls/extensions/s2n_client_supported_versions.h
+8 −1 tls/extensions/s2n_server_signature_algorithms.c
+1 −8 tls/s2n_client_cert_verify.c
+53 −4 tls/s2n_connection.c
+1 −1 tls/s2n_server_cert_request.c
+0 −3 tls/s2n_server_hello.c
+1 −5 tls/s2n_server_key_exchange.c
+97 −57 tls/s2n_signature_algorithms.c
+4 −5 tls/s2n_signature_algorithms.h
+2 −10 tls/s2n_tls13_certificate_verify.c
+7 −7 tls/s2n_x509_validator.c

0 comments on commit ab95bdb

Please sign in to comment.