forked from soramitsu/soramitsu-libsecp256k1
-
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.
- Loading branch information
Showing
2 changed files
with
46 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
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,42 @@ | ||
/* Copyright (c) 2017 The Bitcoin developers */ | ||
|
||
#pragma once | ||
|
||
#cmakedefine HAVE___INT128 | ||
|
||
#cmakedefine USE_NUM_GMP | ||
#cmakedefine USE_FIELD_INV_NUM | ||
#cmakedefine USE_SCALAR_INV_NUM | ||
|
||
#cmakedefine USE_NUM_NONE | ||
#cmakedefine USE_FIELD_INV_BUILTIN | ||
#cmakedefine USE_SCALAR_INV_BUILTIN | ||
|
||
#cmakedefine USE_SCALAR_4X64 | ||
#cmakedefine USE_FIELD_5X52 | ||
|
||
#cmakedefine USE_SCALAR_8X32 | ||
#cmakedefine USE_FIELD_10X26 | ||
|
||
#cmakedefine USE_ASM_X86_64 | ||
|
||
#cmakedefine USE_ECMULT_STATIC_PRECOMPUTATION | ||
|
||
#cmakedefine ECMULT_GEN_PREC_BITS | ||
#if defined(ECMULT_GEN_PREC_BITS) | ||
#define ECMULT_GEN_PREC_BITS ${CLIENT_BUILD_SUFFIX} | ||
#else | ||
#define ECMULT_GEN_PREC_BITS 4 | ||
#endif | ||
|
||
#cmakedefine ECMULT_WINDOW_SIZE | ||
#if defined(ECMULT_WINDOW_SIZE) | ||
#define ECMULT_WINDOW_SIZE ${ECMULT_WINDOW_SIZE} | ||
#else | ||
#define ECMULT_WINDOW_SIZE 15 | ||
#endif | ||
|
||
#cmakedefine ENABLE_MODULE_ECDH | ||
#cmakedefine ENABLE_MODULE_MULTISET | ||
#cmakedefine ENABLE_MODULE_RECOVERY | ||
#cmakedefine ENABLE_MODULE_SCHNORR |