forked from ethereum/go-ethereum
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request ethereum#1853 from Gustav-Simonsson/libsecp256k1_u…
…pdate Update libsecp256k1, Go wrapper and tests
- Loading branch information
Showing
89 changed files
with
6,536 additions
and
3,022 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
bench_inv | ||
bench_ecdh | ||
bench_sign | ||
bench_verify | ||
bench_schnorr_verify | ||
bench_recover | ||
bench_internal | ||
tests | ||
gen_context | ||
*.exe | ||
*.so | ||
*.a | ||
!.gitignore | ||
|
||
Makefile | ||
configure | ||
.libs/ | ||
Makefile.in | ||
aclocal.m4 | ||
autom4te.cache/ | ||
config.log | ||
config.status | ||
*.tar.gz | ||
*.la | ||
libtool | ||
.deps/ | ||
.dirstamp | ||
build-aux/ | ||
*.lo | ||
*.o | ||
*~ | ||
src/libsecp256k1-config.h | ||
src/libsecp256k1-config.h.in | ||
src/ecmult_static_context.h | ||
m4/libtool.m4 | ||
m4/ltoptions.m4 | ||
m4/ltsugar.m4 | ||
m4/ltversion.m4 | ||
m4/lt~obsolete.m4 | ||
src/stamp-h1 | ||
libsecp256k1.pc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
language: c | ||
sudo: false | ||
addons: | ||
apt: | ||
packages: libgmp-dev | ||
compiler: | ||
- clang | ||
- gcc | ||
env: | ||
global: | ||
- FIELD=auto BIGNUM=auto SCALAR=auto ENDOMORPHISM=no STATICPRECOMPUTATION=yes ASM=no BUILD=check EXTRAFLAGS= HOST= ECDH=no schnorr=NO RECOVERY=NO | ||
matrix: | ||
- SCALAR=32bit RECOVERY=yes | ||
- SCALAR=32bit FIELD=32bit ECDH=yes | ||
- SCALAR=64bit | ||
- FIELD=64bit RECOVERY=yes | ||
- FIELD=64bit ENDOMORPHISM=yes | ||
- FIELD=64bit ENDOMORPHISM=yes ECDH=yes | ||
- FIELD=64bit ASM=x86_64 | ||
- FIELD=64bit ENDOMORPHISM=yes ASM=x86_64 | ||
- FIELD=32bit SCHNORR=yes | ||
- FIELD=32bit ENDOMORPHISM=yes | ||
- BIGNUM=no | ||
- BIGNUM=no ENDOMORPHISM=yes SCHNORR=yes RECOVERY=yes | ||
- BIGNUM=no STATICPRECOMPUTATION=no | ||
- BUILD=distcheck | ||
- EXTRAFLAGS=CFLAGS=-DDETERMINISTIC | ||
matrix: | ||
fast_finish: true | ||
include: | ||
- compiler: clang | ||
env: HOST=i686-linux-gnu ENDOMORPHISM=yes | ||
addons: | ||
apt: | ||
packages: | ||
- gcc-multilib | ||
- libgmp-dev:i386 | ||
- compiler: clang | ||
env: HOST=i686-linux-gnu | ||
addons: | ||
apt: | ||
packages: | ||
- gcc-multilib | ||
- compiler: gcc | ||
env: HOST=i686-linux-gnu ENDOMORPHISM=yes | ||
addons: | ||
apt: | ||
packages: | ||
- gcc-multilib | ||
- compiler: gcc | ||
env: HOST=i686-linux-gnu | ||
addons: | ||
apt: | ||
packages: | ||
- gcc-multilib | ||
- libgmp-dev:i386 | ||
before_script: ./autogen.sh | ||
script: | ||
- if [ -n "$HOST" ]; then export USE_HOST="--host=$HOST"; fi | ||
- if [ "x$HOST" = "xi686-linux-gnu" ]; then export CC="$CC -m32"; fi | ||
- ./configure --enable-endomorphism=$ENDOMORPHISM --with-field=$FIELD --with-bignum=$BIGNUM --with-scalar=$SCALAR --enable-ecmult-static-precomputation=$STATICPRECOMPUTATION --enable-module-ecdh=$ECDH --enable-module-schnorr=$SCHNORR $EXTRAFLAGS $USE_HOST && make -j2 $BUILD | ||
os: linux |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.