Skip to content

Commit

Permalink
bump secp256k1 to v0.4.1 (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
etan-status authored Jan 18, 2024
1 parent 7246d91 commit 2bc945c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vendor/secp256k1
Submodule secp256k1 updated 79 files
+28 −342 .cirrus.yml
+33 −0 .github/actions/install-homebrew-valgrind/action.yml
+49 −0 .github/actions/run-in-docker-action/action.yml
+806 −0 .github/workflows/ci.yml
+30 −1 CHANGELOG.md
+20 −10 CMakeLists.txt
+107 −0 CONTRIBUTING.md
+10 −6 Makefile.am
+7 −25 README.md
+41 −13 ci/ci.sh
+60 −18 ci/linux-debian.Dockerfile
+8 −0 cmake/GeneratePkgConfigFile.cmake
+28 −19 configure.ac
+483 −0 doc/ellswift.md
+38 −6 doc/release-process.md
+23 −20 examples/CMakeLists.txt
+1 −1 examples/examples_util.h
+35 −28 include/secp256k1.h
+2 −2 include/secp256k1_ecdh.h
+200 −0 include/secp256k1_ellswift.h
+12 −14 include/secp256k1_extrakeys.h
+1 −1 include/secp256k1_schnorrsig.h
+1 −1 sage/group_prover.sage
+15 −4 src/CMakeLists.txt
+1 −0 src/asm/field_10x26_arm.s
+57 −1 src/bench.c
+2 −5 src/bench_ecmult.c
+44 −15 src/bench_internal.c
+7 −0 src/checkmem.h
+35 −0 src/ctime_tests.c
+8 −20 src/ecdsa_impl.h
+2 −6 src/eckey_impl.h
+1 −1 src/ecmult.h
+216 −171 src/ecmult_const_impl.h
+3 −0 src/ecmult_gen_compute_table_impl.h
+2 −5 src/ecmult_gen_impl.h
+5 −7 src/ecmult_impl.h
+35 −19 src/field.h
+2 −6 src/field_10x26_impl.h
+0 −504 src/field_5x52_asm_impl.h
+2 −6 src/field_5x52_impl.h
+4 −9 src/field_5x52_int128_impl.h
+116 −86 src/field_impl.h
+24 −1 src/group.h
+231 −113 src/group_impl.h
+1 −1 src/hash_impl.h
+5 −0 src/int128_struct_impl.h
+11 −22 src/modinv32_impl.h
+16 −28 src/modinv64_impl.h
+6 −19 src/modules/ecdh/tests_impl.h
+5 −0 src/modules/ellswift/Makefile.am.include
+106 −0 src/modules/ellswift/bench_impl.h
+590 −0 src/modules/ellswift/main_impl.h
+39 −0 src/modules/ellswift/tests_exhaustive_impl.h
+436 −0 src/modules/ellswift/tests_impl.h
+1 −1 src/modules/extrakeys/tests_exhaustive_impl.h
+42 −125 src/modules/extrakeys/tests_impl.h
+17 −52 src/modules/recovery/tests_impl.h
+1 −1 src/modules/schnorrsig/main_impl.h
+5 −5 src/modules/schnorrsig/tests_exhaustive_impl.h
+15 −61 src/modules/schnorrsig/tests_impl.h
+3 −3 src/precompute_ecmult.c
+0 −1 src/precompute_ecmult_gen.c
+0 −1 src/precomputed_ecmult.c
+1 −0 src/precomputed_ecmult.h
+0 −1 src/precomputed_ecmult_gen.c
+8 −5 src/scalar.h
+116 −32 src/scalar_4x64_impl.h
+131 −45 src/scalar_8x32_impl.h
+17 −0 src/scalar_impl.h
+9 −2 src/scalar_low.h
+71 −12 src/scalar_low_impl.h
+6 −2 src/secp256k1.c
+17 −48 src/testrand_impl.h
+513 −704 src/tests.c
+33 −68 src/tests_exhaustive.c
+29 −0 src/testutil.h
+40 −16 src/util.h
+64 −0 tools/check-abi.sh

0 comments on commit 2bc945c

Please sign in to comment.