Skip to content

Commit

Permalink
Update aws-lc-sys to v0.20.0
Browse files Browse the repository at this point in the history
  • Loading branch information
justsmth committed Jul 3, 2024
1 parent 5b24c1a commit 7338dd7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion aws-lc-rs/Cargo.toml
Original file line number Diff line number Diff line change
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.19.0", path = "../aws-lc-sys", optional = true }
aws-lc-sys = { version = "0.20.0", path = "../aws-lc-sys", optional = true }
aws-lc-fips-sys = { version = "0.12.0", path = "../aws-lc-fips-sys", optional = true }
zeroize = { version = "1.7", features = ["zeroize_derive"] }
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.19.0"
links = "aws_lc_0_19_0"
version = "0.20.0"
links = "aws_lc_0_20_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 35 files
+1 −0 crypto/CMakeLists.txt
+7 −7 crypto/cipher_extra/e_des.c
+30 −0 crypto/constant_time_test.cc
+65 −3 crypto/des/des.c
+50 −0 crypto/des/des_test.cc
+21 −0 crypto/dh_extra/dh_test.cc
+2 −0 crypto/fipsmodule/cpucap/cpu_arm_freebsd.c
+4 −0 crypto/fipsmodule/cpucap/cpu_arm_linux.c
+4 −0 crypto/fipsmodule/cpucap/cpu_ppc64le.c
+2 −25 crypto/fipsmodule/dh/check.c
+103 −59 crypto/fipsmodule/ec/ec_nistp.c
+40 −17 crypto/fipsmodule/ec/ec_nistp.h
+13 −11 crypto/fipsmodule/ec/p256.c
+28 −61 crypto/fipsmodule/ec/p384.c
+28 −60 crypto/fipsmodule/ec/p521.c
+2 −2 crypto/fipsmodule/service_indicator/service_indicator_test.cc
+21 −0 crypto/internal.h
+1 −1 include/openssl/base.h
+16 −5 include/openssl/des.h
+0 −5 include/openssl/opensslconf.h
+39 −13 include/openssl/ssl.h
+10 −7 ssl/extensions.cc
+5 −0 ssl/internal.h
+37 −22 ssl/ssl_lib.cc
+36 −1 ssl/ssl_test.cc
+1 −1 tests/ci/integration/python_patch/3.13/aws-lc-cpython.patch
+1 −1 tests/ci/integration/python_patch/main/aws-lc-cpython.patch
+1 −1 util/build_compilation_database.sh
+44 −19 util/fipstools/acvp/acvptool/subprocess/hash.go
+ util/fipstools/acvp/acvptool/test/expected/SHAKE-128.bz2
+ util/fipstools/acvp/acvptool/test/expected/SHAKE-256.bz2
+ util/fipstools/acvp/acvptool/test/vectors/SHAKE-128.bz2
+ util/fipstools/acvp/acvptool/test/vectors/SHAKE-256.bz2
+55 −33 util/fipstools/acvp/modulewrapper/modulewrapper.cc
+3 −3 util/fipstools/test_fips.c

0 comments on commit 7338dd7

Please sign in to comment.