We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1e5d50f + 0706796 commit cc2c09eCopy full SHA for cc2c09e
src/basic-config.h
@@ -9,16 +9,8 @@
9
10
#ifdef USE_BASIC_CONFIG
11
12
-#undef USE_ASM_X86_64
13
-#undef USE_ECMULT_STATIC_PRECOMPUTATION
14
-#undef USE_EXTERNAL_ASM
15
-#undef USE_EXTERNAL_DEFAULT_CALLBACKS
16
-#undef USE_FORCE_WIDEMUL_INT64
17
-#undef USE_FORCE_WIDEMUL_INT128
18
-#undef ECMULT_WINDOW_SIZE
19
-
20
-#define USE_WIDEMUL_64 1
21
#define ECMULT_WINDOW_SIZE 15
+#define ECMULT_GEN_PREC_BITS 4
22
23
#endif /* USE_BASIC_CONFIG */
24
src/gen_context.c
@@ -9,8 +9,9 @@
#if !defined(ECMULT_GEN_PREC_BITS)
#include "libsecp256k1-config.h"
#endif
-#define USE_BASIC_CONFIG 1
-#include "basic-config.h"
+
+/* We can't require the precomputed tables when creating them. */
+#undef USE_ECMULT_STATIC_PRECOMPUTATION
#include "include/secp256k1.h"
#include "assumptions.h"
0 commit comments