26 fprintf(
fp,
"const secp256k1_ge_storage %s[ECMULT_TABLE_SIZE(WINDOW_G)] = {\n",
name);
60 const char outfile[] =
"src/precomputed_ecmult.c";
69 fprintf(
fp,
"/* This file was automatically generated by precompute_ecmult. */\n");
70 fprintf(
fp,
"/* This file contains an array secp256k1_pre_g with odd multiples of the base point G and\n");
71 fprintf(
fp,
" * an array secp256k1_pre_g_128 with odd multiples of 2^128*G for accelerating the computation of a*P + b*G.\n");
75 fprintf(
fp,
"#include \"precomputed_ecmult.h\"\n");
76 fprintf(
fp,
"#define S(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p) SECP256K1_GE_STORAGE_CONST(0x##a##u,0x##b##u,0x##c##u,0x##d##u,0x##e##u,0x##f##u,0x##g##u,0x##h##u,0x##i##u,0x##j##u,0x##k##u,0x##l##u,0x##m##u,0x##n##u,0x##o##u,0x##p##u)\n");
78 fprintf(
fp,
" #error configuration mismatch, invalid ECMULT_WINDOW_SIZE. Try deleting precomputed_ecmult.c before the build.\n");
80 fprintf(
fp,
"#ifdef EXHAUSTIVE_TEST_ORDER\n");
81 fprintf(
fp,
"# error Cannot compile precomputed_ecmult.c in exhaustive test mode\n");
82 fprintf(
fp,
"#endif /* EXHAUSTIVE_TEST_ORDER */\n");
83 fprintf(
fp,
"#define WINDOW_G ECMULT_WINDOW_SIZE\n");
#define ECMULT_TABLE_SIZE(w)
The number of entries a table with precomputed multiples needs to have.
#define ECMULT_WINDOW_SIZE
static void secp256k1_ecmult_compute_two_tables(secp256k1_ge_storage *table, secp256k1_ge_storage *table_128, int window_g, const secp256k1_ge *gen)
#define SECP256K1_GE_STORAGE_CONST_GET(t)
static const secp256k1_ge secp256k1_ge_const_g
static void print_two_tables(FILE *fp, int window_g)
static void print_table(FILE *fp, const char *name, int window_g, const secp256k1_ge_storage *table)
constexpr auto Ticks(Dur2 d)
Helper to count the seconds of a duration/time_point.