Skip to content

Commit

Permalink
Align aws-lc-sys v0.17.0 w/o AWS-LC v1.27.0
Browse files Browse the repository at this point in the history
  • Loading branch information
justsmth committed May 15, 2024
1 parent e8ae35d commit c346042
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions aws-lc-rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "aws-lc-rs"
authors = ["AWS-LibCrypto"]
version = "1.7.1"
version = "1.7.2"
# this crate re-exports whatever sys crate that was selected
links = "aws_lc_rs_1_7_1_sys"
edition = "2021"
Expand Down Expand Up @@ -46,7 +46,7 @@ fips = ["dep:aws-lc-fips-sys"]

[dependencies]
untrusted = { version = "0.7.1", optional = true }
aws-lc-sys = { version = "0.16.0", path = "../aws-lc-sys", optional = true }
aws-lc-sys = { version = "0.17.0", path = "../aws-lc-sys", optional = true }
aws-lc-fips-sys = { version = "0.12.0", path = "../aws-lc-fips-sys", optional = true }
zeroize = "1.7"
mirai-annotations = "1.12.0"
Expand Down
4 changes: 2 additions & 2 deletions aws-lc-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "aws-lc-sys"
description = "AWS-LC is a general-purpose cryptographic library maintained by the AWS Cryptography team for AWS and their customers. It іs based on code from the Google BoringSSL project and the OpenSSL project."
version = "0.16.0"
links = "aws_lc_0_16_0"
version = "0.17.0"
links = "aws_lc_0_17_0"
authors = ["AWS-LC"]
edition = "2021"
repository = "https://github.com/aws/aws-lc-rs"
Expand Down
2 changes: 1 addition & 1 deletion aws-lc-sys/aws-lc
Submodule aws-lc updated 52 files
+1 −1 .github/workflows/abidiff.yml
+8 −1 .github/workflows/actions-ci.yml
+1 −1 .github/workflows/aws-lc-rs.yml
+2 −1 .github/workflows/cmake.yml
+8 −4 .github/workflows/codecov-ci.yml
+1 −1 .github/workflows/cross-test.yml
+1 −1 .github/workflows/integrations.yml
+80 −2 .github/workflows/windows-alt.yml
+27 −14 CMakeLists.txt
+16 −0 cmake/go.cmake
+46 −0 crypto/bio/bio.c
+42 −10 crypto/bio/bio_test.cc
+1 −0 crypto/crypto_test.cc
+27 −8 crypto/fipsmodule/cpucap/cpu_intel.c
+57 −0 crypto/fipsmodule/cpucap/cpu_ppc64le.c
+11 −0 crypto/fipsmodule/rsa/rsa.c
+2 −2 crypto/fipsmodule/service_indicator/service_indicator_test.cc
+7 −5 crypto/kyber/pqcrystals_kyber_ref_common/indcpa.c
+4 −3 crypto/kyber/pqcrystals_kyber_ref_common/indcpa.h
+65 −13 crypto/kyber/pqcrystals_kyber_ref_common/kem.c
+6 −0 crypto/kyber/pqcrystals_kyber_ref_common/kem.h
+6 −0 crypto/test/test_util.cc
+8 −0 crypto/test/test_util.h
+1 −0 crypto/x509/internal.h
+24 −0 crypto/x509/x509_lu.c
+22 −0 crypto/x509/x509_test.cc
+1 −0 go.mod
+1 −1 include/openssl/base.h
+16 −1 include/openssl/bio.h
+10 −0 include/openssl/rsa.h
+52 −10 include/openssl/ssl.h
+12 −5 include/openssl/x509.h
+18 −0 ssl/internal.h
+26 −10 ssl/ssl_buffer.cc
+66 −9 ssl/ssl_lib.cc
+96 −37 ssl/ssl_test.cc
+5 −0 ssl/test/bssl_shim.cc
+3 −0 ssl/test/runner/common.go
+5 −0 ssl/test/runner/conn.go
+32 −0 ssl/test/runner/runner.go
+2 −0 ssl/test/runner/ssl_transfer/test_case_names.txt
+2 −0 ssl/test/test_config.cc
+2 −0 ssl/test/test_config.h
+2 −2 tests/ci/cdk/cdk/codebuild/github_ci_integration_omnibus.yaml
+16 −0 tests/ci/integration/mysql_patch/pending_size_t.patch
+7 −7 tests/ci/integration/mysql_patch/test_wl13075-off.patch
+10 −12 tests/ci/integration/run_mysql_integration.sh
+2 −1 tests/ci/integration/run_ntp_integration.sh
+28 −32 tests/ci/integration/tpm2_tss_patch/aws-lc-tpm2-tss.patch
+79 −0 tests/ci/run_cross_mingw_tests.sh
+1 −0 tests/ci/run_cross_tests.sh
+2 −2 util/codecov-ci.sh

0 comments on commit c346042

Please sign in to comment.