-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Incremental Half-Aggregation for Schnorr Signatures.
- Loading branch information
Showing
7 changed files
with
738 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,8 @@ schnorr_example | |
*.trs | ||
*.sage.py | ||
|
||
.vscode/ | ||
|
||
Makefile | ||
configure | ||
.libs/ | ||
|
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,149 @@ | ||
/* src/libsecp256k1-config.h. Generated from libsecp256k1-config.h.in by configure. */ | ||
/* src/libsecp256k1-config.h.in. Generated from configure.ac by autoheader. */ | ||
|
||
#ifndef LIBSECP256K1_CONFIG_H | ||
|
||
#define LIBSECP256K1_CONFIG_H | ||
|
||
/* Define this symbol to compile out all VERIFY code */ | ||
/* #undef COVERAGE */ | ||
|
||
/* Set ecmult gen precision bits */ | ||
#define ECMULT_GEN_PREC_BITS 4 | ||
|
||
/* Set window size for ecmult precomputation */ | ||
#define ECMULT_WINDOW_SIZE 15 | ||
|
||
/* Define this symbol to enable the Bulletproofs++ module */ | ||
/* #undef ENABLE_MODULE_BPPP */ | ||
|
||
/* Define this symbol to enable the ECDH module */ | ||
/* #undef ENABLE_MODULE_ECDH */ | ||
|
||
/* Define this symbol to enable the ECDSA adaptor module */ | ||
/* #undef ENABLE_MODULE_ECDSA_ADAPTOR */ | ||
|
||
/* Define this symbol to enable the ECDSA sign-to-contract module */ | ||
/* #undef ENABLE_MODULE_ECDSA_S2C */ | ||
|
||
/* Define this symbol to enable the extrakeys module */ | ||
#define ENABLE_MODULE_EXTRAKEYS 1 | ||
|
||
/* Define this symbol to enable the NUMS generator module */ | ||
/* #undef ENABLE_MODULE_GENERATOR */ | ||
|
||
/* Define this symbol to enable the MuSig module */ | ||
/* #undef ENABLE_MODULE_MUSIG */ | ||
|
||
/* Define this symbol to enable the Pedersen / zero knowledge range proof | ||
module */ | ||
/* #undef ENABLE_MODULE_RANGEPROOF */ | ||
|
||
/* Define this symbol to enable the ECDSA pubkey recovery module */ | ||
/* #undef ENABLE_MODULE_RECOVERY */ | ||
|
||
/* Define this symbol to enable the schnorrsig module */ | ||
#define ENABLE_MODULE_SCHNORRSIG 1 | ||
|
||
/* Define this symbol to enable the surjection proof module */ | ||
/* #undef ENABLE_MODULE_SURJECTIONPROOF */ | ||
|
||
/* Define this symbol to enable the key whitelisting module */ | ||
/* #undef ENABLE_MODULE_WHITELIST */ | ||
|
||
/* Define this symbol if __builtin_clzll is available */ | ||
/* #undef HAVE_BUILTIN_CLZLL */ | ||
|
||
/* Define this symbol if __builtin_popcount is available */ | ||
/* #undef HAVE_BUILTIN_POPCOUNT */ | ||
|
||
/* Define to 1 if you have the <dlfcn.h> header file. */ | ||
#define HAVE_DLFCN_H 1 | ||
|
||
/* Define to 1 if you have the <inttypes.h> header file. */ | ||
#define HAVE_INTTYPES_H 1 | ||
|
||
/* Define to 1 if you have the <stdint.h> header file. */ | ||
#define HAVE_STDINT_H 1 | ||
|
||
/* Define to 1 if you have the <stdio.h> header file. */ | ||
#define HAVE_STDIO_H 1 | ||
|
||
/* Define to 1 if you have the <stdlib.h> header file. */ | ||
#define HAVE_STDLIB_H 1 | ||
|
||
/* Define to 1 if you have the <strings.h> header file. */ | ||
#define HAVE_STRINGS_H 1 | ||
|
||
/* Define to 1 if you have the <string.h> header file. */ | ||
#define HAVE_STRING_H 1 | ||
|
||
/* Define to 1 if you have the <sys/stat.h> header file. */ | ||
#define HAVE_SYS_STAT_H 1 | ||
|
||
/* Define to 1 if you have the <sys/types.h> header file. */ | ||
#define HAVE_SYS_TYPES_H 1 | ||
|
||
/* Define to 1 if you have the <unistd.h> header file. */ | ||
#define HAVE_UNISTD_H 1 | ||
|
||
/* Define this symbol if valgrind is installed, and it supports the host | ||
platform */ | ||
/* #undef HAVE_VALGRIND */ | ||
|
||
/* Define to the sub-directory where libtool stores uninstalled libraries. */ | ||
#define LT_OBJDIR ".libs/" | ||
|
||
/* Name of package */ | ||
#define PACKAGE "libsecp256k1" | ||
|
||
/* Define to the address where bug reports for this package should be sent. */ | ||
#define PACKAGE_BUGREPORT "https://github.com/bitcoin-core/secp256k1/issues" | ||
|
||
/* Define to the full name of this package. */ | ||
#define PACKAGE_NAME "libsecp256k1" | ||
|
||
/* Define to the full name and version of this package. */ | ||
#define PACKAGE_STRING "libsecp256k1 0.1.0-pre" | ||
|
||
/* Define to the one symbol short name of this package. */ | ||
#define PACKAGE_TARNAME "libsecp256k1" | ||
|
||
/* Define to the home page for this package. */ | ||
#define PACKAGE_URL "https://github.com/bitcoin-core/secp256k1" | ||
|
||
/* Define to the version of this package. */ | ||
#define PACKAGE_VERSION "0.1.0-pre" | ||
|
||
/* Define to 1 if all of the C90 standard headers exist (not just the ones | ||
required in a freestanding environment). This macro is provided for | ||
backward compatibility; new code need not use it. */ | ||
#define STDC_HEADERS 1 | ||
|
||
/* Define this symbol to enable x86_64 assembly optimizations */ | ||
/* #undef USE_ASM_X86_64 */ | ||
|
||
/* Define this symbol if an external (non-inline) assembly implementation is | ||
used */ | ||
/* #undef USE_EXTERNAL_ASM */ | ||
|
||
/* Define this symbol if an external implementation of the default callbacks | ||
is used */ | ||
/* #undef USE_EXTERNAL_DEFAULT_CALLBACKS */ | ||
|
||
/* Define this symbol to force the use of the (unsigned) __int128 based wide | ||
multiplication implementation */ | ||
/* #undef USE_FORCE_WIDEMUL_INT128 */ | ||
|
||
/* Define this symbol to force the use of the (u)int64_t based wide | ||
multiplication implementation */ | ||
/* #undef USE_FORCE_WIDEMUL_INT64 */ | ||
|
||
/* Define this symbol to reduce SECP256K1_SURJECTIONPROOF_MAX_N_INPUTS to 16, | ||
disabling parsing and verification */ | ||
/* #undef USE_REDUCED_SURJECTION_PROOF_SIZE */ | ||
|
||
/* Version number of package */ | ||
#define VERSION "0.1.0-pre" | ||
|
||
#endif /*LIBSECP256K1_CONFIG_H*/ |
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,148 @@ | ||
/* src/libsecp256k1-config.h.in. Generated from configure.ac by autoheader. */ | ||
|
||
#ifndef LIBSECP256K1_CONFIG_H | ||
|
||
#define LIBSECP256K1_CONFIG_H | ||
|
||
/* Define this symbol to compile out all VERIFY code */ | ||
#undef COVERAGE | ||
|
||
/* Set ecmult gen precision bits */ | ||
#undef ECMULT_GEN_PREC_BITS | ||
|
||
/* Set window size for ecmult precomputation */ | ||
#undef ECMULT_WINDOW_SIZE | ||
|
||
/* Define this symbol to enable the Bulletproofs++ module */ | ||
#undef ENABLE_MODULE_BPPP | ||
|
||
/* Define this symbol to enable the ECDH module */ | ||
#undef ENABLE_MODULE_ECDH | ||
|
||
/* Define this symbol to enable the ECDSA adaptor module */ | ||
#undef ENABLE_MODULE_ECDSA_ADAPTOR | ||
|
||
/* Define this symbol to enable the ECDSA sign-to-contract module */ | ||
#undef ENABLE_MODULE_ECDSA_S2C | ||
|
||
/* Define this symbol to enable the extrakeys module */ | ||
#undef ENABLE_MODULE_EXTRAKEYS | ||
|
||
/* Define this symbol to enable the NUMS generator module */ | ||
#undef ENABLE_MODULE_GENERATOR | ||
|
||
/* Define this symbol to enable the MuSig module */ | ||
#undef ENABLE_MODULE_MUSIG | ||
|
||
/* Define this symbol to enable the Pedersen / zero knowledge range proof | ||
module */ | ||
#undef ENABLE_MODULE_RANGEPROOF | ||
|
||
/* Define this symbol to enable the ECDSA pubkey recovery module */ | ||
#undef ENABLE_MODULE_RECOVERY | ||
|
||
/* Define this symbol to enable the schnorrsig module */ | ||
#undef ENABLE_MODULE_SCHNORRSIG | ||
|
||
/* Define this symbol to enable the surjection proof module */ | ||
#undef ENABLE_MODULE_SURJECTIONPROOF | ||
|
||
/* Define this symbol to enable the key whitelisting module */ | ||
#undef ENABLE_MODULE_WHITELIST | ||
|
||
/* Define this symbol if __builtin_clzll is available */ | ||
#undef HAVE_BUILTIN_CLZLL | ||
|
||
/* Define this symbol if __builtin_popcount is available */ | ||
#undef HAVE_BUILTIN_POPCOUNT | ||
|
||
/* Define to 1 if you have the <dlfcn.h> header file. */ | ||
#undef HAVE_DLFCN_H | ||
|
||
/* Define to 1 if you have the <inttypes.h> header file. */ | ||
#undef HAVE_INTTYPES_H | ||
|
||
/* Define to 1 if you have the <stdint.h> header file. */ | ||
#undef HAVE_STDINT_H | ||
|
||
/* Define to 1 if you have the <stdio.h> header file. */ | ||
#undef HAVE_STDIO_H | ||
|
||
/* Define to 1 if you have the <stdlib.h> header file. */ | ||
#undef HAVE_STDLIB_H | ||
|
||
/* Define to 1 if you have the <strings.h> header file. */ | ||
#undef HAVE_STRINGS_H | ||
|
||
/* Define to 1 if you have the <string.h> header file. */ | ||
#undef HAVE_STRING_H | ||
|
||
/* Define to 1 if you have the <sys/stat.h> header file. */ | ||
#undef HAVE_SYS_STAT_H | ||
|
||
/* Define to 1 if you have the <sys/types.h> header file. */ | ||
#undef HAVE_SYS_TYPES_H | ||
|
||
/* Define to 1 if you have the <unistd.h> header file. */ | ||
#undef HAVE_UNISTD_H | ||
|
||
/* Define this symbol if valgrind is installed, and it supports the host | ||
platform */ | ||
#undef HAVE_VALGRIND | ||
|
||
/* Define to the sub-directory where libtool stores uninstalled libraries. */ | ||
#undef LT_OBJDIR | ||
|
||
/* Name of package */ | ||
#undef PACKAGE | ||
|
||
/* Define to the address where bug reports for this package should be sent. */ | ||
#undef PACKAGE_BUGREPORT | ||
|
||
/* Define to the full name of this package. */ | ||
#undef PACKAGE_NAME | ||
|
||
/* Define to the full name and version of this package. */ | ||
#undef PACKAGE_STRING | ||
|
||
/* Define to the one symbol short name of this package. */ | ||
#undef PACKAGE_TARNAME | ||
|
||
/* Define to the home page for this package. */ | ||
#undef PACKAGE_URL | ||
|
||
/* Define to the version of this package. */ | ||
#undef PACKAGE_VERSION | ||
|
||
/* Define to 1 if all of the C90 standard headers exist (not just the ones | ||
required in a freestanding environment). This macro is provided for | ||
backward compatibility; new code need not use it. */ | ||
#undef STDC_HEADERS | ||
|
||
/* Define this symbol to enable x86_64 assembly optimizations */ | ||
#undef USE_ASM_X86_64 | ||
|
||
/* Define this symbol if an external (non-inline) assembly implementation is | ||
used */ | ||
#undef USE_EXTERNAL_ASM | ||
|
||
/* Define this symbol if an external implementation of the default callbacks | ||
is used */ | ||
#undef USE_EXTERNAL_DEFAULT_CALLBACKS | ||
|
||
/* Define this symbol to force the use of the (unsigned) __int128 based wide | ||
multiplication implementation */ | ||
#undef USE_FORCE_WIDEMUL_INT128 | ||
|
||
/* Define this symbol to force the use of the (u)int64_t based wide | ||
multiplication implementation */ | ||
#undef USE_FORCE_WIDEMUL_INT64 | ||
|
||
/* Define this symbol to reduce SECP256K1_SURJECTIONPROOF_MAX_N_INPUTS to 16, | ||
disabling parsing and verification */ | ||
#undef USE_REDUCED_SURJECTION_PROOF_SIZE | ||
|
||
/* Version number of package */ | ||
#undef VERSION | ||
|
||
#endif /*LIBSECP256K1_CONFIG_H*/ |
Oops, something went wrong.