Skip to content

Commit

Permalink
Revert secp256k1 to v0.2.0 (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
kcw-grunt authored Mar 31, 2023
1 parent 06e65ba commit 20b8ac0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion secp256k1
Submodule secp256k1 updated 74 files
+19 −51 .cirrus.yml
+4 −5 .gitignore
+7 −40 CHANGELOG.md
+0 −297 CMakeLists.txt
+31 −37 Makefile.am
+4 −39 README.md
+1 −1 build-aux/m4/bitcoin_secp.m4
+18 −28 ci/cirrus.sh
+0 −14 cmake/Check64bitAssembly.cmake
+0 −12 cmake/CheckStringOptionValue.cmake
+0 −41 cmake/FindValgrind.cmake
+0 −23 cmake/TryAddCompileOption.cmake
+0 −3 cmake/arm-linux-gnueabihf.toolchain.cmake
+0 −5 cmake/config.cmake.in
+0 −3 cmake/x86_64-w64-mingw32.toolchain.cmake
+32 −55 configure.ac
+1 −1 doc/release-process.md
+3 −51 doc/safegcd_implementation.md
+0 −34 examples/CMakeLists.txt
+7 −6 examples/ecdh.c
+7 −13 examples/ecdsa.c
+0 −29 examples/random.h
+5 −13 examples/schnorr.c
+27 −34 include/secp256k1.h
+2 −2 include/secp256k1_ecdh.h
+2 −6 include/secp256k1_preallocated.h
+1 −1 include/secp256k1_schnorrsig.h
+1 −0 libsecp256k1.pc.in
+84 −116 sage/gen_exhaustive_groups.sage
+17 −9 sage/prove_group_implementations.sage
+0 −151 src/CMakeLists.txt
+0 −2 src/asm/field_10x26_arm.s
+1 −1 src/bench.c
+6 −6 src/bench.h
+1 −1 src/bench_ecmult.c
+30 −44 src/bench_internal.c
+0 −88 src/checkmem.h
+7 −10 src/ecmult_impl.h
+4 −6 src/field.h
+2 −48 src/field_10x26_impl.h
+6 −44 src/field_5x52_impl.h
+4 −0 src/field_impl.h
+38 −63 src/group_impl.h
+3 −8 src/int128.h
+2 −8 src/int128_native_impl.h
+5 −12 src/int128_struct_impl.h
+4 −5 src/modinv32.h
+20 −168 src/modinv32_impl.h
+4 −5 src/modinv64.h
+41 −203 src/modinv64_impl.h
+1 −1 src/modules/ecdh/bench_impl.h
+26 −26 src/modules/ecdh/tests_impl.h
+163 −164 src/modules/extrakeys/tests_impl.h
+3 −3 src/modules/recovery/bench_impl.h
+4 −3 src/modules/recovery/tests_exhaustive_impl.h
+105 −105 src/modules/recovery/tests_impl.h
+3 −3 src/modules/schnorrsig/bench_impl.h
+103 −103 src/modules/schnorrsig/tests_impl.h
+9 −0 src/precompute_ecmult.c
+3 −0 src/precompute_ecmult_gen.c
+3 −0 src/precomputed_ecmult.c
+1 −3 src/precomputed_ecmult.h
+3 −0 src/precomputed_ecmult_gen.c
+7 −4 src/scalar.h
+1 −2 src/scalar_4x64_impl.h
+1 −2 src/scalar_8x32_impl.h
+8 −11 src/scalar_impl.h
+1 −2 src/scalar_low_impl.h
+24 −50 src/secp256k1.c
+4 −0 src/testrand.h
+695 −891 src/tests.c
+15 −11 src/tests_exhaustive.c
+25 −2 src/util.h
+40 −43 src/valgrind_ctime_test.c

0 comments on commit 20b8ac0

Please sign in to comment.