We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6a9901e + 3ce74b1 commit 3545627Copy full SHA for 3545627
src/ecmult_impl.h
@@ -15,11 +15,13 @@
15
#define WINDOW_A 5
16
17
/** larger numbers may result in slightly better performance, at the cost of
18
- exponentially larger precomputed tables. WINDOW_G == 14 results in 640 KiB. */
+ exponentially larger precomputed tables. */
19
#ifdef USE_ENDOMORPHISM
20
-#define WINDOW_G 14
21
-#else
+/** Two tables for window size 15: 1.375 MiB. */
22
#define WINDOW_G 15
+#else
23
+/** One table for window size 16: 1.375 MiB. */
24
+#define WINDOW_G 16
25
#endif
26
27
/** Fill a table 'pre' with precomputed odd multiples of a. W determines the size of the table.
0 commit comments