-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3f7ea90
commit 4fa6ffa
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule secp256k1
updated
20 files
+12 −4 | .cirrus.yml | |
+6 −0 | CMakeLists.txt | |
+4 −0 | Makefile.am | |
+1 −0 | ci/cirrus.sh | |
+10 −0 | configure.ac | |
+483 −0 | doc/ellswift.md | |
+198 −0 | include/secp256k1_ellswift.h | |
+3 −0 | src/CMakeLists.txt | |
+57 −1 | src/bench.c | |
+35 −0 | src/ctime_tests.c | |
+4 −2 | src/field.h | |
+6 −0 | src/group.h | |
+28 −0 | src/group_impl.h | |
+4 −0 | src/modules/ellswift/Makefile.am.include | |
+106 −0 | src/modules/ellswift/bench_impl.h | |
+589 −0 | src/modules/ellswift/main_impl.h | |
+434 −0 | src/modules/ellswift/tests_impl.h | |
+0 −11 | src/modules/schnorrsig/tests_impl.h | |
+4 −0 | src/secp256k1.c | |
+48 −1 | src/tests.c |