Skip to content

Commit

Permalink
Align aws-lc-sys with aws-lc/win-msbuild-asm branch
Browse files Browse the repository at this point in the history
  • Loading branch information
justsmth committed Jul 11, 2024
1 parent 961216e commit c297c02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws-lc-sys/aws-lc
Submodule aws-lc updated 87 files
+20 −0 .github/docker_images/gcc-4.8/Dockerfile
+18 −0 .github/docker_images/gcc-4.8/awslc_build.sh
+8 −0 .github/docker_images/gcc-4.8/entry.sh
+14 −0 .github/workflows/actions-ci.yml
+14 −0 .github/workflows/integrations.yml
+45 −6 .github/workflows/windows-alt.yml
+15 −7 CMakeLists.txt
+51 −0 crypto/CMakeLists.txt
+7 −7 crypto/cipher_extra/e_des.c
+30 −0 crypto/constant_time_test.cc
+1 −1 crypto/curve25519/internal.h
+65 −3 crypto/des/des.c
+50 −0 crypto/des/des_test.cc
+21 −0 crypto/dh_extra/dh_test.cc
+50 −0 crypto/ec_extra/ec_asn1.c
+8 −1 crypto/fipsmodule/CMakeLists.txt
+5 −1 crypto/fipsmodule/aes/asm/aesni-xts-avx512.pl
+15 −1 crypto/fipsmodule/bn/asm/x86_64-mont.pl
+13 −1 crypto/fipsmodule/bn/asm/x86_64-mont5.pl
+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
+52 −2 crypto/fipsmodule/ec/asm/p256-x86_64-asm.pl
+9 −0 crypto/fipsmodule/ec/ec.c
+143 −59 crypto/fipsmodule/ec/ec_nistp.c
+54 −18 crypto/fipsmodule/ec/ec_nistp.h
+135 −58 crypto/fipsmodule/ec/ec_test.cc
+13 −11 crypto/fipsmodule/ec/p256.c
+35 −75 crypto/fipsmodule/ec/p384.c
+35 −74 crypto/fipsmodule/ec/p521.c
+9 −0 crypto/fipsmodule/hmac/hmac.c
+5 −1 crypto/fipsmodule/modes/asm/aesni-gcm-avx512.pl
+16 −51 crypto/fipsmodule/modes/asm/aesv8-gcm-armv8.pl
+5 −3 crypto/fipsmodule/modes/gcm.c
+2 −0 crypto/fipsmodule/modes/internal.h
+2 −2 crypto/fipsmodule/service_indicator/service_indicator_test.cc
+25 −0 crypto/hmac_extra/hmac_test.cc
+21 −0 crypto/internal.h
+16 −51 generated-src/ios-aarch64/crypto/fipsmodule/aesv8-gcm-armv8.S
+16 −51 generated-src/linux-aarch64/crypto/fipsmodule/aesv8-gcm-armv8.S
+2 −0 generated-src/linux-x86_64/crypto/fipsmodule/aesni-gcm-avx512.S
+2 −0 generated-src/linux-x86_64/crypto/fipsmodule/aesni-xts-avx512.S
+36 −1 generated-src/linux-x86_64/crypto/fipsmodule/p256-x86_64-asm.S
+10 −0 generated-src/linux-x86_64/crypto/fipsmodule/x86_64-mont.S
+8 −0 generated-src/linux-x86_64/crypto/fipsmodule/x86_64-mont5.S
+2 −0 generated-src/mac-x86_64/crypto/fipsmodule/aesni-gcm-avx512.S
+2 −0 generated-src/mac-x86_64/crypto/fipsmodule/aesni-xts-avx512.S
+36 −1 generated-src/mac-x86_64/crypto/fipsmodule/p256-x86_64-asm.S
+10 −0 generated-src/mac-x86_64/crypto/fipsmodule/x86_64-mont.S
+8 −0 generated-src/mac-x86_64/crypto/fipsmodule/x86_64-mont5.S
+16 −51 generated-src/win-aarch64/crypto/fipsmodule/aesv8-gcm-armv8.S
+2 −0 generated-src/win-x86_64/crypto/fipsmodule/aesni-xts-avx512.asm
+48 −1 generated-src/win-x86_64/crypto/fipsmodule/p256-x86_64-asm.asm
+14 −0 generated-src/win-x86_64/crypto/fipsmodule/x86_64-mont.asm
+12 −0 generated-src/win-x86_64/crypto/fipsmodule/x86_64-mont5.asm
+1 −1 include/openssl/base.h
+16 −5 include/openssl/des.h
+40 −12 include/openssl/ec.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
+5 −2 tests/ci/cdk/cdk/ssm/general_test_run_ssm_document.yaml
+1 −1 tests/ci/integration/python_patch/3.13/aws-lc-cpython.patch
+0 −121 tests/ci/integration/python_patch/main/aws-lc-cpython.patch
+29 −0 tests/ci/integration/run_accp_integration.sh
+5 −2 tests/ci/run_posix_tests.sh
+17 −0 tests/docker_images/gcc/4.8/Dockerfile
+28 −0 tests/docker_images/gcc/build_images.sh
+55 −0 tool-openssl/CMakeLists.txt
+8 −0 tool-openssl/README.md
+21 −0 tool-openssl/internal.h
+113 −0 tool-openssl/tool.cc
+74 −0 tool-openssl/x509.cc
+105 −0 tool-openssl/x509_test.cc
+5 −0 util/all_tests.json
+2 −2 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 c297c02

Please sign in to comment.