We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 066c16e commit c65199eCopy full SHA for c65199e
src/ecmult.h
@@ -11,6 +11,9 @@
11
#include "scalar.h"
12
#include "scratch.h"
13
14
+#ifndef ECMULT_WINDOW_SIZE
15
+# define ECMULT_WINDOW_SIZE 15
16
+#endif
17
/* Noone will ever need more than a window size of 24. The code might
18
* be correct for larger values of ECMULT_WINDOW_SIZE but this is not
19
* tested.
src/ecmult_gen.h
@@ -10,6 +10,9 @@
10
#include "group.h"
+#ifndef ECMULT_GEN_PREC_BITS
+# define ECMULT_GEN_PREC_BITS 4
#if ECMULT_GEN_PREC_BITS != 2 && ECMULT_GEN_PREC_BITS != 4 && ECMULT_GEN_PREC_BITS != 8
# error "Set ECMULT_GEN_PREC_BITS to 2, 4 or 8."
#endif
0 commit comments