Skip to content

Commit

Permalink
Disabling GFp_nistp384_point_mul_public patch (#168)
Browse files Browse the repository at this point in the history
  • Loading branch information
pennyannn authored Nov 20, 2024
1 parent 00e78ca commit b37d482
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion SAW/scripts/x86_64/entrypoint_check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ extract-bc build/llvm_x86/crypto/crypto_test
apply_patch "cmovznz"
apply_patch "rsa-encrypt"
apply_patch "nomuxrsp"
apply_patch "ec_GFp_nistp384_point_mul_public"
# apply_patch "ec_GFp_nistp384_point_mul_public"
apply_patch "noinline-OPENSSL_malloc"
apply_patch "noinline-aes_gcm_from_cipher_ctx"
apply_patch "noinline-bn_mod_add_words"
Expand Down
2 changes: 1 addition & 1 deletion SAW/scripts/x86_64/entrypoint_check_aes_gcm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ extract-bc build/llvm_x86/crypto/crypto_test
apply_patch "cmovznz"
apply_patch "rsa-encrypt"
apply_patch "nomuxrsp"
apply_patch "ec_GFp_nistp384_point_mul_public"
# apply_patch "ec_GFp_nistp384_point_mul_public"
apply_patch "noinline-OPENSSL_malloc"
apply_patch "noinline-aes_gcm_from_cipher_ctx"
apply_patch "noinline-bn_mod_add_words"
Expand Down
2 changes: 1 addition & 1 deletion src
Submodule src updated 71 files
+13 −0 .github/workflows/integrations.yml
+6 −4 crypto/CMakeLists.txt
+21 −6 crypto/asn1/asn1_lib.c
+59 −10 crypto/asn1/asn1_test.cc
+15 −0 crypto/asn1/internal.h
+1 −1 crypto/asn1/tasn_dec.c
+8 −8 crypto/bytestring/cbs.c
+20 −0 crypto/bytestring/internal.h
+88 −86 crypto/conf/conf.c
+1 −2 crypto/conf/conf_test.cc
+0 −8 crypto/conf/internal.h
+71 −0 crypto/dilithium/internal.h
+22 −21 crypto/dilithium/ml_dsa.c
+36 −0 crypto/dilithium/ml_dsa.h
+0 −125 crypto/dilithium/p_dilithium3.c
+0 −248 crypto/dilithium/p_dilithium3_asn1.c
+0 −780 crypto/dilithium/p_dilithium_test.cc
+287 −0 crypto/dilithium/p_pqdsa.c
+223 −0 crypto/dilithium/p_pqdsa_asn1.c
+746 −0 crypto/dilithium/p_pqdsa_test.cc
+119 −0 crypto/dilithium/pqdsa.c
+0 −47 crypto/dilithium/sig_dilithium.h
+27 −2 crypto/evp_extra/evp_asn1.c
+606 −331 crypto/evp_extra/evp_extra_test.cc
+6 −12 crypto/evp_extra/internal.h
+358 −0 crypto/evp_extra/p_dsa.c
+7 −17 crypto/evp_extra/p_dsa_asn1.c
+3 −3 crypto/evp_extra/p_methods.c
+16 −15 crypto/evp_extra/print.c
+1 −1 crypto/fipsmodule/PQREADME.md
+2 −0 crypto/fipsmodule/evp/digestsign.c
+81 −0 crypto/fipsmodule/evp/evp_ctx_test.cc
+6 −2 crypto/fipsmodule/evp/internal.h
+26 −0 crypto/fipsmodule/modes/gcm.c
+2 −2 crypto/fipsmodule/rand/internal.h
+2 −2 crypto/fipsmodule/service_indicator/service_indicator_test.cc
+0 −1 crypto/lhash/internal.h
+4 −0 crypto/lhash/lhash.c
+57 −2 crypto/obj/obj_dat.h
+4 −0 crypto/obj/obj_mac.num
+1 −1 crypto/obj/obj_xref.c
+11 −3 crypto/obj/objects.txt
+5 −5 crypto/pkcs7/bio/bio_md_test.cc
+14 −1 crypto/pkcs7/bio/cipher.c
+8 −0 crypto/pkcs7/bio/md.c
+6 −4 crypto/pkcs7/internal.h
+477 −0 crypto/pkcs7/pkcs7.c
+2 −2 crypto/pkcs7/pkcs7_asn1.c
+330 −0 crypto/pkcs7/pkcs7_test.cc
+2 −0 crypto/test/file_util.cc
+9 −3 crypto/test/file_util.h
+11 −4 crypto/x509/algorithm.c
+382 −371 crypto/x509/x509_test.cc
+3 −2 include/openssl/base.h
+3 −0 include/openssl/conf.h
+36 −7 include/openssl/evp.h
+13 −0 include/openssl/lhash.h
+16 −0 include/openssl/nid.h
+49 −5 include/openssl/pkcs7.h
+1 −1 ssl/extensions.cc
+5 −0 ssl/internal.h
+44 −16 ssl/ssl_privkey.cc
+58 −19 ssl/ssl_test.cc
+1 −1 ssl/ssl_x509.cc
+63 −0 tests/ci/integration/run_cyrus_sasl_integration.sh
+3 −0 tool-openssl/CMakeLists.txt
+87 −0 tool-openssl/crl.cc
+184 −0 tool-openssl/crl_test.cc
+1 −0 tool-openssl/internal.h
+2 −1 tool-openssl/tool.cc
+25 −14 tool/speed.cc

0 comments on commit b37d482

Please sign in to comment.