Skip to content

Commit

Permalink
Merge branch 'master' into p384_merge
Browse files Browse the repository at this point in the history
  • Loading branch information
pennyannn authored Dec 11, 2023
2 parents 58e4b46 + 41b0f65 commit 332a6ed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[submodule "src"]
path = src
branch = upstream-merge-2023-11-30
url = https://github.com/dkostic/aws-lc.git
branch = main
url = https://github.com/aws/aws-lc.git
[submodule "cryptol-specs"]
path = cryptol-specs
branch = sha-imperative
Expand Down
2 changes: 1 addition & 1 deletion src
Submodule src updated 58 files
+1 −0 crypto/CMakeLists.txt
+27 −0 crypto/bio/bio.c
+86 −52 crypto/bio/bio_test.cc
+1 −0 crypto/cipher_extra/cipher_extra.c
+147 −2 crypto/cipher_extra/cipher_test.cc
+422 −32 crypto/cipher_extra/e_chacha20poly1305.c
+17 −261 crypto/curve25519/curve25519.c
+20 −16 crypto/curve25519/curve25519_nohw.c
+229 −0 crypto/curve25519/curve25519_s2n_bignum_asm.c
+64 −17 crypto/curve25519/internal.h
+2 −0 crypto/decrepit/evp/evp_do_all.c
+2 −0 crypto/engine/engine.c
+16 −38 crypto/fipsmodule/CMakeLists.txt
+2 −2 crypto/fipsmodule/service_indicator/service_indicator_test.cc
+16 −12 crypto/ocsp/ocsp_integration_test.cc
+149 −0 crypto/pem/pem_test.cc
+28 −0 crypto/x509/x509_test.cc
+1 −1 include/openssl/base.h
+27 −0 include/openssl/bio.h
+2 −1 include/openssl/chacha.h
+7 −0 include/openssl/cipher.h
+9 −7 include/openssl/curve25519.h
+7 −0 include/openssl/engine.h
+10 −10 include/openssl/ssl.h
+28 −0 ssl/internal.h
+9 −8 ssl/ssl_lib.cc
+37 −18 ssl/ssl_test.cc
+50 −114 ssl/ssl_transfer_asn1.cc
+12 −2 ssl/ssl_versions.cc
+7 −2 ssl/tls_transfer.asn
+10 −0 tests/ci/cdk/cdk/codebuild/github_ci_integration_omnibus.yaml
+1 −1 tests/ci/common_fuzz.sh
+2 −2 tests/ci/common_posix_setup.sh
+1 −1 tests/ci/docker_images/dependencies/build_cryptofuzz_modules.sh
+1 −1 tests/ci/docker_images/linux-x86/ubuntu-20.04_clang-10x_formal-verification/create_image.sh
+1 −0 tests/ci/docker_images/linux-x86/ubuntu-22.04_base/Dockerfile
+97 −0 tests/ci/integration/librelp_patch/aws-lc-librelp.patch
+1 −1 tests/ci/integration/run_crt_integration.sh
+1 −1 tests/ci/integration/run_curl_integration.sh
+3 −3 tests/ci/integration/run_haproxy_integration.sh
+64 −0 tests/ci/integration/run_librelp_integration.sh
+1 −1 tests/ci/integration/run_mariadb_integration.sh
+1 −1 tests/ci/integration/run_monit_integration.sh
+1 −1 tests/ci/integration/run_mysql_integration.sh
+1 −1 tests/ci/integration/run_nginx_integration.sh
+1 −1 tests/ci/integration/run_openssh_integration.sh
+2 −2 tests/ci/integration/run_postgres_integration.sh
+2 −2 tests/ci/integration/run_s2n_integration.sh
+1 −1 tests/ci/integration/run_sslproxy_integration.sh
+1 −1 tests/ci/run_cross_tests.sh
+2 −2 tests/ci/run_cryptofuzz.sh
+1 −3 tests/ci/run_formal_verification.sh
+5 −5 tests/ci/run_install_shared_and_static.sh
+0 −2 third_party/s2n-bignum/include/s2n-bignum_aws-lc.h
+2 −1 util/all_tests.json
+40 −9 util/fipstools/delocate/delocate.go
+4 −0 util/fipstools/delocate/testdata/aarch64-Basic/in.s
+40 −0 util/fipstools/delocate/testdata/aarch64-Basic/out.s

0 comments on commit 332a6ed

Please sign in to comment.