2020-12-29 17:15:51 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* Copyright (c) 2013, 2014, 2017 Pieter Wuille, Andrew Poelstra, Jonas Nick *
|
|
|
|
* Distributed under the MIT software license, see the accompanying *
|
|
|
|
* file COPYING or https://www.opensource.org/licenses/mit-license.php. *
|
|
|
|
******************************************************************************/
|
2015-10-26 14:54:21 +00:00
|
|
|
|
2018-07-09 11:17:44 +00:00
|
|
|
#ifndef SECP256K1_ECMULT_IMPL_H
|
|
|
|
#define SECP256K1_ECMULT_IMPL_H
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdint.h>
|
2015-10-26 14:54:21 +00:00
|
|
|
|
2019-05-28 12:23:28 +00:00
|
|
|
#include "util.h"
|
2015-10-26 14:54:21 +00:00
|
|
|
#include "group.h"
|
|
|
|
#include "scalar.h"
|
|
|
|
#include "ecmult.h"
|
2022-03-08 19:45:41 +00:00
|
|
|
#include "precomputed_ecmult.h"
|
2015-10-26 14:54:21 +00:00
|
|
|
|
2018-07-09 11:17:44 +00:00
|
|
|
#if defined(EXHAUSTIVE_TEST_ORDER)
|
|
|
|
/* We need to lower these values for exhaustive tests because
|
|
|
|
* the tables cannot have infinities in them (this breaks the
|
|
|
|
* affine-isomorphism stuff which tracks z-ratios) */
|
|
|
|
# if EXHAUSTIVE_TEST_ORDER > 128
|
|
|
|
# define WINDOW_A 5
|
|
|
|
# elif EXHAUSTIVE_TEST_ORDER > 8
|
|
|
|
# define WINDOW_A 4
|
|
|
|
# else
|
|
|
|
# define WINDOW_A 2
|
|
|
|
# endif
|
|
|
|
#else
|
2015-10-26 14:54:21 +00:00
|
|
|
/* optimal for 128-bit and 256-bit exponents. */
|
2019-05-28 12:23:28 +00:00
|
|
|
# define WINDOW_A 5
|
|
|
|
/** Larger values for ECMULT_WINDOW_SIZE result in possibly better
|
|
|
|
* performance at the cost of an exponentially larger precomputed
|
|
|
|
* table. The exact table size is
|
2022-10-08 15:43:43 +00:00
|
|
|
* (1 << (WINDOW_G - 2)) * sizeof(rustsecp256k1_v0_6_1_ge_storage) bytes,
|
|
|
|
* where sizeof(rustsecp256k1_v0_6_1_ge_storage) is typically 64 bytes but can
|
2019-05-28 12:23:28 +00:00
|
|
|
* be larger due to platform-specific padding and alignment.
|
2020-12-29 17:15:51 +00:00
|
|
|
* Two tables of this size are used (due to the endomorphism
|
|
|
|
* optimization).
|
2019-05-28 12:23:28 +00:00
|
|
|
*/
|
2018-07-09 11:17:44 +00:00
|
|
|
#endif
|
|
|
|
|
2020-12-29 17:15:51 +00:00
|
|
|
#define WNAF_BITS 128
|
2018-07-09 11:17:44 +00:00
|
|
|
#define WNAF_SIZE_BITS(bits, w) (((bits) + (w) - 1) / (w))
|
|
|
|
#define WNAF_SIZE(w) WNAF_SIZE_BITS(WNAF_BITS, w)
|
2015-10-26 14:54:21 +00:00
|
|
|
|
2018-07-09 11:17:44 +00:00
|
|
|
/* The number of objects allocated on the scratch space for ecmult_multi algorithms */
|
|
|
|
#define PIPPENGER_SCRATCH_OBJECTS 6
|
2022-03-08 19:45:41 +00:00
|
|
|
#define STRAUSS_SCRATCH_OBJECTS 7
|
2018-07-09 11:17:44 +00:00
|
|
|
|
|
|
|
#define PIPPENGER_MAX_BUCKET_WINDOW 12
|
|
|
|
|
|
|
|
/* Minimum number of points for which pippenger_wnaf is faster than strauss wnaf */
|
2020-12-29 17:15:51 +00:00
|
|
|
#define ECMULT_PIPPENGER_THRESHOLD 88
|
2018-07-09 11:17:44 +00:00
|
|
|
|
2020-12-29 17:15:51 +00:00
|
|
|
#define ECMULT_MAX_POINTS_PER_BATCH 5000000
|
2018-07-09 11:17:44 +00:00
|
|
|
|
2015-10-26 14:54:21 +00:00
|
|
|
/** Fill a table 'prej' with precomputed odd multiples of a. Prej will contain
|
|
|
|
* the values [1*a,3*a,...,(2*n-1)*a], so it space for n values. zr[0] will
|
|
|
|
* contain prej[0].z / a.z. The other zr[i] values = prej[i].z / prej[i-1].z.
|
|
|
|
* Prej's Z values are undefined, except for the last value.
|
|
|
|
*/
|
2022-10-08 15:43:43 +00:00
|
|
|
static void rustsecp256k1_v0_6_1_ecmult_odd_multiples_table(int n, rustsecp256k1_v0_6_1_gej *prej, rustsecp256k1_v0_6_1_fe *zr, const rustsecp256k1_v0_6_1_gej *a) {
|
|
|
|
rustsecp256k1_v0_6_1_gej d;
|
|
|
|
rustsecp256k1_v0_6_1_ge a_ge, d_ge;
|
2015-10-26 14:54:21 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
VERIFY_CHECK(!a->infinity);
|
|
|
|
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_gej_double_var(&d, a, NULL);
|
2015-10-26 14:54:21 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Perform the additions on an isomorphism where 'd' is affine: drop the z coordinate
|
|
|
|
* of 'd', and scale the 1P starting value's x/y coordinates without changing its z.
|
|
|
|
*/
|
|
|
|
d_ge.x = d.x;
|
|
|
|
d_ge.y = d.y;
|
|
|
|
d_ge.infinity = 0;
|
|
|
|
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_ge_set_gej_zinv(&a_ge, a, &d.z);
|
2015-10-26 14:54:21 +00:00
|
|
|
prej[0].x = a_ge.x;
|
|
|
|
prej[0].y = a_ge.y;
|
|
|
|
prej[0].z = a->z;
|
|
|
|
prej[0].infinity = 0;
|
|
|
|
|
|
|
|
zr[0] = d.z;
|
|
|
|
for (i = 1; i < n; i++) {
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_gej_add_ge_var(&prej[i], &prej[i-1], &d_ge, &zr[i]);
|
2015-10-26 14:54:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Each point in 'prej' has a z coordinate too small by a factor of 'd.z'. Only
|
|
|
|
* the final point's z coordinate is actually used though, so just update that.
|
|
|
|
*/
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_fe_mul(&prej[n-1].z, &prej[n-1].z, &d.z);
|
2015-10-26 14:54:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/** The following two macro retrieves a particular odd multiple from a table
|
|
|
|
* of precomputed multiples. */
|
|
|
|
#define ECMULT_TABLE_GET_GE(r,pre,n,w) do { \
|
|
|
|
VERIFY_CHECK(((n) & 1) == 1); \
|
|
|
|
VERIFY_CHECK((n) >= -((1 << ((w)-1)) - 1)); \
|
|
|
|
VERIFY_CHECK((n) <= ((1 << ((w)-1)) - 1)); \
|
|
|
|
if ((n) > 0) { \
|
|
|
|
*(r) = (pre)[((n)-1)/2]; \
|
|
|
|
} else { \
|
2019-05-28 12:23:28 +00:00
|
|
|
*(r) = (pre)[(-(n)-1)/2]; \
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_fe_negate(&((r)->y), &((r)->y), 1); \
|
2015-10-26 14:54:21 +00:00
|
|
|
} \
|
|
|
|
} while(0)
|
|
|
|
|
|
|
|
#define ECMULT_TABLE_GET_GE_STORAGE(r,pre,n,w) do { \
|
|
|
|
VERIFY_CHECK(((n) & 1) == 1); \
|
|
|
|
VERIFY_CHECK((n) >= -((1 << ((w)-1)) - 1)); \
|
|
|
|
VERIFY_CHECK((n) <= ((1 << ((w)-1)) - 1)); \
|
|
|
|
if ((n) > 0) { \
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_ge_from_storage((r), &(pre)[((n)-1)/2]); \
|
2015-10-26 14:54:21 +00:00
|
|
|
} else { \
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_ge_from_storage((r), &(pre)[(-(n)-1)/2]); \
|
|
|
|
rustsecp256k1_v0_6_1_fe_negate(&((r)->y), &((r)->y), 1); \
|
2015-10-26 14:54:21 +00:00
|
|
|
} \
|
|
|
|
} while(0)
|
|
|
|
|
|
|
|
/** Convert a number to WNAF notation. The number becomes represented by sum(2^i * wnaf[i], i=0..bits),
|
|
|
|
* with the following guarantees:
|
|
|
|
* - each wnaf[i] is either 0, or an odd integer between -(1<<(w-1) - 1) and (1<<(w-1) - 1)
|
|
|
|
* - two non-zero entries in wnaf are separated by at least w-1 zeroes.
|
|
|
|
* - the number of set values in wnaf is returned. This number is at most 256, and at most one more
|
|
|
|
* than the number of bits in the (absolute value) of the input.
|
|
|
|
*/
|
2022-10-08 15:43:43 +00:00
|
|
|
static int rustsecp256k1_v0_6_1_ecmult_wnaf(int *wnaf, int len, const rustsecp256k1_v0_6_1_scalar *a, int w) {
|
|
|
|
rustsecp256k1_v0_6_1_scalar s;
|
2015-10-26 14:54:21 +00:00
|
|
|
int last_set_bit = -1;
|
|
|
|
int bit = 0;
|
|
|
|
int sign = 1;
|
|
|
|
int carry = 0;
|
|
|
|
|
|
|
|
VERIFY_CHECK(wnaf != NULL);
|
|
|
|
VERIFY_CHECK(0 <= len && len <= 256);
|
|
|
|
VERIFY_CHECK(a != NULL);
|
|
|
|
VERIFY_CHECK(2 <= w && w <= 31);
|
|
|
|
|
|
|
|
memset(wnaf, 0, len * sizeof(wnaf[0]));
|
|
|
|
|
2020-08-26 17:35:27 +00:00
|
|
|
s = *a;
|
2022-10-08 15:43:43 +00:00
|
|
|
if (rustsecp256k1_v0_6_1_scalar_get_bits(&s, 255, 1)) {
|
|
|
|
rustsecp256k1_v0_6_1_scalar_negate(&s, &s);
|
2015-10-26 14:54:21 +00:00
|
|
|
sign = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (bit < len) {
|
|
|
|
int now;
|
|
|
|
int word;
|
2022-10-08 15:43:43 +00:00
|
|
|
if (rustsecp256k1_v0_6_1_scalar_get_bits(&s, bit, 1) == (unsigned int)carry) {
|
2015-10-26 14:54:21 +00:00
|
|
|
bit++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
now = w;
|
|
|
|
if (now > len - bit) {
|
|
|
|
now = len - bit;
|
|
|
|
}
|
|
|
|
|
2022-10-08 15:43:43 +00:00
|
|
|
word = rustsecp256k1_v0_6_1_scalar_get_bits_var(&s, bit, now) + carry;
|
2015-10-26 14:54:21 +00:00
|
|
|
|
|
|
|
carry = (word >> (w-1)) & 1;
|
|
|
|
word -= carry << w;
|
|
|
|
|
|
|
|
wnaf[bit] = sign * word;
|
|
|
|
last_set_bit = bit;
|
|
|
|
|
|
|
|
bit += now;
|
|
|
|
}
|
|
|
|
#ifdef VERIFY
|
|
|
|
CHECK(carry == 0);
|
|
|
|
while (bit < 256) {
|
2022-10-08 15:43:43 +00:00
|
|
|
CHECK(rustsecp256k1_v0_6_1_scalar_get_bits(&s, bit++, 1) == 0);
|
2019-05-28 12:23:28 +00:00
|
|
|
}
|
2015-10-26 14:54:21 +00:00
|
|
|
#endif
|
|
|
|
return last_set_bit + 1;
|
|
|
|
}
|
|
|
|
|
2022-10-08 15:43:43 +00:00
|
|
|
struct rustsecp256k1_v0_6_1_strauss_point_state {
|
|
|
|
rustsecp256k1_v0_6_1_scalar na_1, na_lam;
|
2020-12-29 17:15:51 +00:00
|
|
|
int wnaf_na_1[129];
|
|
|
|
int wnaf_na_lam[129];
|
2015-10-26 14:54:21 +00:00
|
|
|
int bits_na_1;
|
|
|
|
int bits_na_lam;
|
2018-07-09 11:17:44 +00:00
|
|
|
size_t input_pos;
|
|
|
|
};
|
|
|
|
|
2022-10-08 15:43:43 +00:00
|
|
|
struct rustsecp256k1_v0_6_1_strauss_state {
|
|
|
|
rustsecp256k1_v0_6_1_gej* prej;
|
|
|
|
rustsecp256k1_v0_6_1_fe* zr;
|
|
|
|
rustsecp256k1_v0_6_1_ge* pre_a;
|
|
|
|
rustsecp256k1_v0_6_1_ge* pre_a_lam;
|
|
|
|
struct rustsecp256k1_v0_6_1_strauss_point_state* ps;
|
2018-07-09 11:17:44 +00:00
|
|
|
};
|
|
|
|
|
2022-10-08 15:43:43 +00:00
|
|
|
static void rustsecp256k1_v0_6_1_ecmult_strauss_wnaf(const struct rustsecp256k1_v0_6_1_strauss_state *state, rustsecp256k1_v0_6_1_gej *r, size_t num, const rustsecp256k1_v0_6_1_gej *a, const rustsecp256k1_v0_6_1_scalar *na, const rustsecp256k1_v0_6_1_scalar *ng) {
|
|
|
|
rustsecp256k1_v0_6_1_ge tmpa;
|
|
|
|
rustsecp256k1_v0_6_1_fe Z;
|
2022-03-08 19:45:41 +00:00
|
|
|
/* Split G factors. */
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_scalar ng_1, ng_128;
|
2018-07-09 11:17:44 +00:00
|
|
|
int wnaf_ng_1[129];
|
|
|
|
int bits_ng_1 = 0;
|
|
|
|
int wnaf_ng_128[129];
|
|
|
|
int bits_ng_128 = 0;
|
2015-10-26 14:54:21 +00:00
|
|
|
int i;
|
2018-07-09 11:17:44 +00:00
|
|
|
int bits = 0;
|
2020-12-29 17:15:51 +00:00
|
|
|
size_t np;
|
|
|
|
size_t no = 0;
|
2015-10-26 14:54:21 +00:00
|
|
|
|
2018-07-09 11:17:44 +00:00
|
|
|
for (np = 0; np < num; ++np) {
|
2022-10-08 15:43:43 +00:00
|
|
|
if (rustsecp256k1_v0_6_1_scalar_is_zero(&na[np]) || rustsecp256k1_v0_6_1_gej_is_infinity(&a[np])) {
|
2018-07-09 11:17:44 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
state->ps[no].input_pos = np;
|
|
|
|
/* split na into na_1 and na_lam (where na = na_1 + na_lam*lambda, and na_1 and na_lam are ~128 bit) */
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_scalar_split_lambda(&state->ps[no].na_1, &state->ps[no].na_lam, &na[np]);
|
2018-07-09 11:17:44 +00:00
|
|
|
|
|
|
|
/* build wnaf representation for na_1 and na_lam. */
|
2022-10-08 15:43:43 +00:00
|
|
|
state->ps[no].bits_na_1 = rustsecp256k1_v0_6_1_ecmult_wnaf(state->ps[no].wnaf_na_1, 129, &state->ps[no].na_1, WINDOW_A);
|
|
|
|
state->ps[no].bits_na_lam = rustsecp256k1_v0_6_1_ecmult_wnaf(state->ps[no].wnaf_na_lam, 129, &state->ps[no].na_lam, WINDOW_A);
|
2020-12-29 17:15:51 +00:00
|
|
|
VERIFY_CHECK(state->ps[no].bits_na_1 <= 129);
|
|
|
|
VERIFY_CHECK(state->ps[no].bits_na_lam <= 129);
|
2018-07-09 11:17:44 +00:00
|
|
|
if (state->ps[no].bits_na_1 > bits) {
|
|
|
|
bits = state->ps[no].bits_na_1;
|
|
|
|
}
|
|
|
|
if (state->ps[no].bits_na_lam > bits) {
|
|
|
|
bits = state->ps[no].bits_na_lam;
|
|
|
|
}
|
|
|
|
++no;
|
|
|
|
}
|
2015-10-26 14:54:21 +00:00
|
|
|
|
|
|
|
/* Calculate odd multiples of a.
|
|
|
|
* All multiples are brought to the same Z 'denominator', which is stored
|
|
|
|
* in Z. Due to secp256k1' isomorphism we can do all operations pretending
|
|
|
|
* that the Z coordinate was 1, use affine addition formulae, and correct
|
|
|
|
* the Z coordinate of the result once at the end.
|
|
|
|
* The exception is the precomputed G table points, which are actually
|
|
|
|
* affine. Compared to the base used for other points, they have a Z ratio
|
2022-10-08 15:43:43 +00:00
|
|
|
* of 1/Z, so we can use rustsecp256k1_v0_6_1_gej_add_zinv_var, which uses the same
|
2015-10-26 14:54:21 +00:00
|
|
|
* isomorphism to efficiently add with a known Z inverse.
|
|
|
|
*/
|
2018-07-09 11:17:44 +00:00
|
|
|
if (no > 0) {
|
|
|
|
/* Compute the odd multiples in Jacobian form. */
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_ecmult_odd_multiples_table(ECMULT_TABLE_SIZE(WINDOW_A), state->prej, state->zr, &a[state->ps[0].input_pos]);
|
2018-07-09 11:17:44 +00:00
|
|
|
for (np = 1; np < no; ++np) {
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_gej tmp = a[state->ps[np].input_pos];
|
2018-07-09 11:17:44 +00:00
|
|
|
#ifdef VERIFY
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_fe_normalize_var(&(state->prej[(np - 1) * ECMULT_TABLE_SIZE(WINDOW_A) + ECMULT_TABLE_SIZE(WINDOW_A) - 1].z));
|
2018-07-09 11:17:44 +00:00
|
|
|
#endif
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_gej_rescale(&tmp, &(state->prej[(np - 1) * ECMULT_TABLE_SIZE(WINDOW_A) + ECMULT_TABLE_SIZE(WINDOW_A) - 1].z));
|
|
|
|
rustsecp256k1_v0_6_1_ecmult_odd_multiples_table(ECMULT_TABLE_SIZE(WINDOW_A), state->prej + np * ECMULT_TABLE_SIZE(WINDOW_A), state->zr + np * ECMULT_TABLE_SIZE(WINDOW_A), &tmp);
|
|
|
|
rustsecp256k1_v0_6_1_fe_mul(state->zr + np * ECMULT_TABLE_SIZE(WINDOW_A), state->zr + np * ECMULT_TABLE_SIZE(WINDOW_A), &(a[state->ps[np].input_pos].z));
|
2018-07-09 11:17:44 +00:00
|
|
|
}
|
|
|
|
/* Bring them to the same Z denominator. */
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_ge_globalz_set_table_gej(ECMULT_TABLE_SIZE(WINDOW_A) * no, state->pre_a, &Z, state->prej, state->zr);
|
2018-07-09 11:17:44 +00:00
|
|
|
} else {
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_fe_set_int(&Z, 1);
|
2018-07-09 11:17:44 +00:00
|
|
|
}
|
2015-10-26 14:54:21 +00:00
|
|
|
|
2018-07-09 11:17:44 +00:00
|
|
|
for (np = 0; np < no; ++np) {
|
|
|
|
for (i = 0; i < ECMULT_TABLE_SIZE(WINDOW_A); i++) {
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_ge_mul_lambda(&state->pre_a_lam[np * ECMULT_TABLE_SIZE(WINDOW_A) + i], &state->pre_a[np * ECMULT_TABLE_SIZE(WINDOW_A) + i]);
|
2018-07-09 11:17:44 +00:00
|
|
|
}
|
2015-10-26 14:54:21 +00:00
|
|
|
}
|
|
|
|
|
2018-07-09 11:17:44 +00:00
|
|
|
if (ng) {
|
|
|
|
/* split ng into ng_1 and ng_128 (where gn = gn_1 + gn_128*2^128, and gn_1 and gn_128 are ~128 bit) */
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_scalar_split_128(&ng_1, &ng_128, ng);
|
2015-10-26 14:54:21 +00:00
|
|
|
|
2018-07-09 11:17:44 +00:00
|
|
|
/* Build wnaf representation for ng_1 and ng_128 */
|
2022-10-08 15:43:43 +00:00
|
|
|
bits_ng_1 = rustsecp256k1_v0_6_1_ecmult_wnaf(wnaf_ng_1, 129, &ng_1, WINDOW_G);
|
|
|
|
bits_ng_128 = rustsecp256k1_v0_6_1_ecmult_wnaf(wnaf_ng_128, 129, &ng_128, WINDOW_G);
|
2018-07-09 11:17:44 +00:00
|
|
|
if (bits_ng_1 > bits) {
|
|
|
|
bits = bits_ng_1;
|
|
|
|
}
|
|
|
|
if (bits_ng_128 > bits) {
|
|
|
|
bits = bits_ng_128;
|
|
|
|
}
|
2015-10-26 14:54:21 +00:00
|
|
|
}
|
|
|
|
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_gej_set_infinity(r);
|
2015-10-26 14:54:21 +00:00
|
|
|
|
|
|
|
for (i = bits - 1; i >= 0; i--) {
|
|
|
|
int n;
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_gej_double_var(r, r, NULL);
|
2018-07-09 11:17:44 +00:00
|
|
|
for (np = 0; np < no; ++np) {
|
|
|
|
if (i < state->ps[np].bits_na_1 && (n = state->ps[np].wnaf_na_1[i])) {
|
|
|
|
ECMULT_TABLE_GET_GE(&tmpa, state->pre_a + np * ECMULT_TABLE_SIZE(WINDOW_A), n, WINDOW_A);
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_gej_add_ge_var(r, r, &tmpa, NULL);
|
2018-07-09 11:17:44 +00:00
|
|
|
}
|
|
|
|
if (i < state->ps[np].bits_na_lam && (n = state->ps[np].wnaf_na_lam[i])) {
|
|
|
|
ECMULT_TABLE_GET_GE(&tmpa, state->pre_a_lam + np * ECMULT_TABLE_SIZE(WINDOW_A), n, WINDOW_A);
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_gej_add_ge_var(r, r, &tmpa, NULL);
|
2018-07-09 11:17:44 +00:00
|
|
|
}
|
2015-10-26 14:54:21 +00:00
|
|
|
}
|
|
|
|
if (i < bits_ng_1 && (n = wnaf_ng_1[i])) {
|
2022-10-08 15:43:43 +00:00
|
|
|
ECMULT_TABLE_GET_GE_STORAGE(&tmpa, rustsecp256k1_v0_6_1_pre_g, n, WINDOW_G);
|
|
|
|
rustsecp256k1_v0_6_1_gej_add_zinv_var(r, r, &tmpa, &Z);
|
2015-10-26 14:54:21 +00:00
|
|
|
}
|
|
|
|
if (i < bits_ng_128 && (n = wnaf_ng_128[i])) {
|
2022-10-08 15:43:43 +00:00
|
|
|
ECMULT_TABLE_GET_GE_STORAGE(&tmpa, rustsecp256k1_v0_6_1_pre_g_128, n, WINDOW_G);
|
|
|
|
rustsecp256k1_v0_6_1_gej_add_zinv_var(r, r, &tmpa, &Z);
|
2015-10-26 14:54:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!r->infinity) {
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_fe_mul(&r->z, &r->z, &Z);
|
2015-10-26 14:54:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-08 15:43:43 +00:00
|
|
|
static void rustsecp256k1_v0_6_1_ecmult(rustsecp256k1_v0_6_1_gej *r, const rustsecp256k1_v0_6_1_gej *a, const rustsecp256k1_v0_6_1_scalar *na, const rustsecp256k1_v0_6_1_scalar *ng) {
|
|
|
|
rustsecp256k1_v0_6_1_gej prej[ECMULT_TABLE_SIZE(WINDOW_A)];
|
|
|
|
rustsecp256k1_v0_6_1_fe zr[ECMULT_TABLE_SIZE(WINDOW_A)];
|
|
|
|
rustsecp256k1_v0_6_1_ge pre_a[ECMULT_TABLE_SIZE(WINDOW_A)];
|
|
|
|
struct rustsecp256k1_v0_6_1_strauss_point_state ps[1];
|
|
|
|
rustsecp256k1_v0_6_1_ge pre_a_lam[ECMULT_TABLE_SIZE(WINDOW_A)];
|
|
|
|
struct rustsecp256k1_v0_6_1_strauss_state state;
|
2018-07-09 11:17:44 +00:00
|
|
|
|
|
|
|
state.prej = prej;
|
|
|
|
state.zr = zr;
|
|
|
|
state.pre_a = pre_a;
|
|
|
|
state.pre_a_lam = pre_a_lam;
|
|
|
|
state.ps = ps;
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_ecmult_strauss_wnaf(&state, r, 1, a, na, ng);
|
2018-07-09 11:17:44 +00:00
|
|
|
}
|
|
|
|
|
2022-10-08 15:43:43 +00:00
|
|
|
static size_t rustsecp256k1_v0_6_1_strauss_scratch_size(size_t n_points) {
|
|
|
|
static const size_t point_size = (2 * sizeof(rustsecp256k1_v0_6_1_ge) + sizeof(rustsecp256k1_v0_6_1_gej) + sizeof(rustsecp256k1_v0_6_1_fe)) * ECMULT_TABLE_SIZE(WINDOW_A) + sizeof(struct rustsecp256k1_v0_6_1_strauss_point_state) + sizeof(rustsecp256k1_v0_6_1_gej) + sizeof(rustsecp256k1_v0_6_1_scalar);
|
2018-07-09 11:17:44 +00:00
|
|
|
return n_points*point_size;
|
|
|
|
}
|
|
|
|
|
2022-10-08 15:43:43 +00:00
|
|
|
static int rustsecp256k1_v0_6_1_ecmult_strauss_batch(const rustsecp256k1_v0_6_1_callback* error_callback, rustsecp256k1_v0_6_1_scratch *scratch, rustsecp256k1_v0_6_1_gej *r, const rustsecp256k1_v0_6_1_scalar *inp_g_sc, rustsecp256k1_v0_6_1_ecmult_multi_callback cb, void *cbdata, size_t n_points, size_t cb_offset) {
|
|
|
|
rustsecp256k1_v0_6_1_gej* points;
|
|
|
|
rustsecp256k1_v0_6_1_scalar* scalars;
|
|
|
|
struct rustsecp256k1_v0_6_1_strauss_state state;
|
2018-07-09 11:17:44 +00:00
|
|
|
size_t i;
|
2022-10-08 15:43:43 +00:00
|
|
|
const size_t scratch_checkpoint = rustsecp256k1_v0_6_1_scratch_checkpoint(error_callback, scratch);
|
2018-07-09 11:17:44 +00:00
|
|
|
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_gej_set_infinity(r);
|
2018-07-09 11:17:44 +00:00
|
|
|
if (inp_g_sc == NULL && n_points == 0) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2022-03-08 19:45:41 +00:00
|
|
|
/* We allocate STRAUSS_SCRATCH_OBJECTS objects on the scratch space. If these
|
|
|
|
* allocations change, make sure to update the STRAUSS_SCRATCH_OBJECTS
|
|
|
|
* constant and strauss_scratch_size accordingly. */
|
2022-10-08 15:43:43 +00:00
|
|
|
points = (rustsecp256k1_v0_6_1_gej*)rustsecp256k1_v0_6_1_scratch_alloc(error_callback, scratch, n_points * sizeof(rustsecp256k1_v0_6_1_gej));
|
|
|
|
scalars = (rustsecp256k1_v0_6_1_scalar*)rustsecp256k1_v0_6_1_scratch_alloc(error_callback, scratch, n_points * sizeof(rustsecp256k1_v0_6_1_scalar));
|
|
|
|
state.prej = (rustsecp256k1_v0_6_1_gej*)rustsecp256k1_v0_6_1_scratch_alloc(error_callback, scratch, n_points * ECMULT_TABLE_SIZE(WINDOW_A) * sizeof(rustsecp256k1_v0_6_1_gej));
|
|
|
|
state.zr = (rustsecp256k1_v0_6_1_fe*)rustsecp256k1_v0_6_1_scratch_alloc(error_callback, scratch, n_points * ECMULT_TABLE_SIZE(WINDOW_A) * sizeof(rustsecp256k1_v0_6_1_fe));
|
|
|
|
state.pre_a = (rustsecp256k1_v0_6_1_ge*)rustsecp256k1_v0_6_1_scratch_alloc(error_callback, scratch, n_points * ECMULT_TABLE_SIZE(WINDOW_A) * sizeof(rustsecp256k1_v0_6_1_ge));
|
|
|
|
state.pre_a_lam = (rustsecp256k1_v0_6_1_ge*)rustsecp256k1_v0_6_1_scratch_alloc(error_callback, scratch, n_points * ECMULT_TABLE_SIZE(WINDOW_A) * sizeof(rustsecp256k1_v0_6_1_ge));
|
|
|
|
state.ps = (struct rustsecp256k1_v0_6_1_strauss_point_state*)rustsecp256k1_v0_6_1_scratch_alloc(error_callback, scratch, n_points * sizeof(struct rustsecp256k1_v0_6_1_strauss_point_state));
|
2019-05-28 12:23:28 +00:00
|
|
|
|
2020-12-29 17:15:51 +00:00
|
|
|
if (points == NULL || scalars == NULL || state.prej == NULL || state.zr == NULL || state.pre_a == NULL || state.pre_a_lam == NULL || state.ps == NULL) {
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_scratch_apply_checkpoint(error_callback, scratch, scratch_checkpoint);
|
2019-05-28 12:23:28 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2018-07-09 11:17:44 +00:00
|
|
|
|
|
|
|
for (i = 0; i < n_points; i++) {
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_ge point;
|
2018-07-09 11:17:44 +00:00
|
|
|
if (!cb(&scalars[i], &point, i+cb_offset, cbdata)) {
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_scratch_apply_checkpoint(error_callback, scratch, scratch_checkpoint);
|
2018-07-09 11:17:44 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_gej_set_ge(&points[i], &point);
|
2018-07-09 11:17:44 +00:00
|
|
|
}
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_ecmult_strauss_wnaf(&state, r, n_points, points, scalars, inp_g_sc);
|
|
|
|
rustsecp256k1_v0_6_1_scratch_apply_checkpoint(error_callback, scratch, scratch_checkpoint);
|
2018-07-09 11:17:44 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2022-10-08 15:43:43 +00:00
|
|
|
/* Wrapper for rustsecp256k1_v0_6_1_ecmult_multi_func interface */
|
|
|
|
static int rustsecp256k1_v0_6_1_ecmult_strauss_batch_single(const rustsecp256k1_v0_6_1_callback* error_callback, rustsecp256k1_v0_6_1_scratch *scratch, rustsecp256k1_v0_6_1_gej *r, const rustsecp256k1_v0_6_1_scalar *inp_g_sc, rustsecp256k1_v0_6_1_ecmult_multi_callback cb, void *cbdata, size_t n) {
|
|
|
|
return rustsecp256k1_v0_6_1_ecmult_strauss_batch(error_callback, scratch, r, inp_g_sc, cb, cbdata, n, 0);
|
2018-07-09 11:17:44 +00:00
|
|
|
}
|
|
|
|
|
2022-10-08 15:43:43 +00:00
|
|
|
static size_t rustsecp256k1_v0_6_1_strauss_max_points(const rustsecp256k1_v0_6_1_callback* error_callback, rustsecp256k1_v0_6_1_scratch *scratch) {
|
|
|
|
return rustsecp256k1_v0_6_1_scratch_max_allocation(error_callback, scratch, STRAUSS_SCRATCH_OBJECTS) / rustsecp256k1_v0_6_1_strauss_scratch_size(1);
|
2018-07-09 11:17:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Convert a number to WNAF notation.
|
|
|
|
* The number becomes represented by sum(2^{wi} * wnaf[i], i=0..WNAF_SIZE(w)+1) - return_val.
|
|
|
|
* It has the following guarantees:
|
|
|
|
* - each wnaf[i] is either 0 or an odd integer between -(1 << w) and (1 << w)
|
|
|
|
* - the number of words set is always WNAF_SIZE(w)
|
|
|
|
* - the returned skew is 0 or 1
|
|
|
|
*/
|
2022-10-08 15:43:43 +00:00
|
|
|
static int rustsecp256k1_v0_6_1_wnaf_fixed(int *wnaf, const rustsecp256k1_v0_6_1_scalar *s, int w) {
|
2018-07-09 11:17:44 +00:00
|
|
|
int skew = 0;
|
|
|
|
int pos;
|
|
|
|
int max_pos;
|
|
|
|
int last_w;
|
2022-10-08 15:43:43 +00:00
|
|
|
const rustsecp256k1_v0_6_1_scalar *work = s;
|
2018-07-09 11:17:44 +00:00
|
|
|
|
2022-10-08 15:43:43 +00:00
|
|
|
if (rustsecp256k1_v0_6_1_scalar_is_zero(s)) {
|
2018-07-09 11:17:44 +00:00
|
|
|
for (pos = 0; pos < WNAF_SIZE(w); pos++) {
|
|
|
|
wnaf[pos] = 0;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2022-10-08 15:43:43 +00:00
|
|
|
if (rustsecp256k1_v0_6_1_scalar_is_even(s)) {
|
2018-07-09 11:17:44 +00:00
|
|
|
skew = 1;
|
|
|
|
}
|
|
|
|
|
2022-10-08 15:43:43 +00:00
|
|
|
wnaf[0] = rustsecp256k1_v0_6_1_scalar_get_bits_var(work, 0, w) + skew;
|
2018-07-09 11:17:44 +00:00
|
|
|
/* Compute last window size. Relevant when window size doesn't divide the
|
|
|
|
* number of bits in the scalar */
|
|
|
|
last_w = WNAF_BITS - (WNAF_SIZE(w) - 1) * w;
|
|
|
|
|
|
|
|
/* Store the position of the first nonzero word in max_pos to allow
|
|
|
|
* skipping leading zeros when calculating the wnaf. */
|
|
|
|
for (pos = WNAF_SIZE(w) - 1; pos > 0; pos--) {
|
2022-10-08 15:43:43 +00:00
|
|
|
int val = rustsecp256k1_v0_6_1_scalar_get_bits_var(work, pos * w, pos == WNAF_SIZE(w)-1 ? last_w : w);
|
2018-07-09 11:17:44 +00:00
|
|
|
if(val != 0) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
wnaf[pos] = 0;
|
|
|
|
}
|
|
|
|
max_pos = pos;
|
|
|
|
pos = 1;
|
|
|
|
|
|
|
|
while (pos <= max_pos) {
|
2022-10-08 15:43:43 +00:00
|
|
|
int val = rustsecp256k1_v0_6_1_scalar_get_bits_var(work, pos * w, pos == WNAF_SIZE(w)-1 ? last_w : w);
|
2018-07-09 11:17:44 +00:00
|
|
|
if ((val & 1) == 0) {
|
|
|
|
wnaf[pos - 1] -= (1 << w);
|
|
|
|
wnaf[pos] = (val + 1);
|
|
|
|
} else {
|
|
|
|
wnaf[pos] = val;
|
|
|
|
}
|
|
|
|
/* Set a coefficient to zero if it is 1 or -1 and the proceeding digit
|
|
|
|
* is strictly negative or strictly positive respectively. Only change
|
|
|
|
* coefficients at previous positions because above code assumes that
|
|
|
|
* wnaf[pos - 1] is odd.
|
|
|
|
*/
|
|
|
|
if (pos >= 2 && ((wnaf[pos - 1] == 1 && wnaf[pos - 2] < 0) || (wnaf[pos - 1] == -1 && wnaf[pos - 2] > 0))) {
|
|
|
|
if (wnaf[pos - 1] == 1) {
|
|
|
|
wnaf[pos - 2] += 1 << w;
|
|
|
|
} else {
|
|
|
|
wnaf[pos - 2] -= 1 << w;
|
|
|
|
}
|
|
|
|
wnaf[pos - 1] = 0;
|
|
|
|
}
|
|
|
|
++pos;
|
|
|
|
}
|
|
|
|
|
|
|
|
return skew;
|
|
|
|
}
|
|
|
|
|
2022-10-08 15:43:43 +00:00
|
|
|
struct rustsecp256k1_v0_6_1_pippenger_point_state {
|
2018-07-09 11:17:44 +00:00
|
|
|
int skew_na;
|
|
|
|
size_t input_pos;
|
|
|
|
};
|
|
|
|
|
2022-10-08 15:43:43 +00:00
|
|
|
struct rustsecp256k1_v0_6_1_pippenger_state {
|
2018-07-09 11:17:44 +00:00
|
|
|
int *wnaf_na;
|
2022-10-08 15:43:43 +00:00
|
|
|
struct rustsecp256k1_v0_6_1_pippenger_point_state* ps;
|
2018-07-09 11:17:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* pippenger_wnaf computes the result of a multi-point multiplication as
|
|
|
|
* follows: The scalars are brought into wnaf with n_wnaf elements each. Then
|
|
|
|
* for every i < n_wnaf, first each point is added to a "bucket" corresponding
|
|
|
|
* to the point's wnaf[i]. Second, the buckets are added together such that
|
|
|
|
* r += 1*bucket[0] + 3*bucket[1] + 5*bucket[2] + ...
|
|
|
|
*/
|
2022-10-08 15:43:43 +00:00
|
|
|
static int rustsecp256k1_v0_6_1_ecmult_pippenger_wnaf(rustsecp256k1_v0_6_1_gej *buckets, int bucket_window, struct rustsecp256k1_v0_6_1_pippenger_state *state, rustsecp256k1_v0_6_1_gej *r, const rustsecp256k1_v0_6_1_scalar *sc, const rustsecp256k1_v0_6_1_ge *pt, size_t num) {
|
2018-07-09 11:17:44 +00:00
|
|
|
size_t n_wnaf = WNAF_SIZE(bucket_window+1);
|
|
|
|
size_t np;
|
|
|
|
size_t no = 0;
|
|
|
|
int i;
|
|
|
|
int j;
|
|
|
|
|
|
|
|
for (np = 0; np < num; ++np) {
|
2022-10-08 15:43:43 +00:00
|
|
|
if (rustsecp256k1_v0_6_1_scalar_is_zero(&sc[np]) || rustsecp256k1_v0_6_1_ge_is_infinity(&pt[np])) {
|
2018-07-09 11:17:44 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
state->ps[no].input_pos = np;
|
2022-10-08 15:43:43 +00:00
|
|
|
state->ps[no].skew_na = rustsecp256k1_v0_6_1_wnaf_fixed(&state->wnaf_na[no*n_wnaf], &sc[np], bucket_window+1);
|
2018-07-09 11:17:44 +00:00
|
|
|
no++;
|
|
|
|
}
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_gej_set_infinity(r);
|
2018-07-09 11:17:44 +00:00
|
|
|
|
|
|
|
if (no == 0) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = n_wnaf - 1; i >= 0; i--) {
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_gej running_sum;
|
2018-07-09 11:17:44 +00:00
|
|
|
|
|
|
|
for(j = 0; j < ECMULT_TABLE_SIZE(bucket_window+2); j++) {
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_gej_set_infinity(&buckets[j]);
|
2018-07-09 11:17:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (np = 0; np < no; ++np) {
|
|
|
|
int n = state->wnaf_na[np*n_wnaf + i];
|
2022-10-08 15:43:43 +00:00
|
|
|
struct rustsecp256k1_v0_6_1_pippenger_point_state point_state = state->ps[np];
|
|
|
|
rustsecp256k1_v0_6_1_ge tmp;
|
2018-07-09 11:17:44 +00:00
|
|
|
int idx;
|
|
|
|
|
|
|
|
if (i == 0) {
|
|
|
|
/* correct for wnaf skew */
|
|
|
|
int skew = point_state.skew_na;
|
|
|
|
if (skew) {
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_ge_neg(&tmp, &pt[point_state.input_pos]);
|
|
|
|
rustsecp256k1_v0_6_1_gej_add_ge_var(&buckets[0], &buckets[0], &tmp, NULL);
|
2018-07-09 11:17:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (n > 0) {
|
|
|
|
idx = (n - 1)/2;
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_gej_add_ge_var(&buckets[idx], &buckets[idx], &pt[point_state.input_pos], NULL);
|
2018-07-09 11:17:44 +00:00
|
|
|
} else if (n < 0) {
|
|
|
|
idx = -(n + 1)/2;
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_ge_neg(&tmp, &pt[point_state.input_pos]);
|
|
|
|
rustsecp256k1_v0_6_1_gej_add_ge_var(&buckets[idx], &buckets[idx], &tmp, NULL);
|
2018-07-09 11:17:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for(j = 0; j < bucket_window; j++) {
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_gej_double_var(r, r, NULL);
|
2018-07-09 11:17:44 +00:00
|
|
|
}
|
|
|
|
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_gej_set_infinity(&running_sum);
|
2018-07-09 11:17:44 +00:00
|
|
|
/* Accumulate the sum: bucket[0] + 3*bucket[1] + 5*bucket[2] + 7*bucket[3] + ...
|
|
|
|
* = bucket[0] + bucket[1] + bucket[2] + bucket[3] + ...
|
|
|
|
* + 2 * (bucket[1] + 2*bucket[2] + 3*bucket[3] + ...)
|
|
|
|
* using an intermediate running sum:
|
|
|
|
* running_sum = bucket[0] + bucket[1] + bucket[2] + ...
|
|
|
|
*
|
|
|
|
* The doubling is done implicitly by deferring the final window doubling (of 'r').
|
|
|
|
*/
|
|
|
|
for(j = ECMULT_TABLE_SIZE(bucket_window+2) - 1; j > 0; j--) {
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_gej_add_var(&running_sum, &running_sum, &buckets[j], NULL);
|
|
|
|
rustsecp256k1_v0_6_1_gej_add_var(r, r, &running_sum, NULL);
|
2018-07-09 11:17:44 +00:00
|
|
|
}
|
|
|
|
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_gej_add_var(&running_sum, &running_sum, &buckets[0], NULL);
|
|
|
|
rustsecp256k1_v0_6_1_gej_double_var(r, r, NULL);
|
|
|
|
rustsecp256k1_v0_6_1_gej_add_var(r, r, &running_sum, NULL);
|
2018-07-09 11:17:44 +00:00
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns optimal bucket_window (number of bits of a scalar represented by a
|
|
|
|
* set of buckets) for a given number of points.
|
|
|
|
*/
|
2022-10-08 15:43:43 +00:00
|
|
|
static int rustsecp256k1_v0_6_1_pippenger_bucket_window(size_t n) {
|
2018-07-09 11:17:44 +00:00
|
|
|
if (n <= 1) {
|
|
|
|
return 1;
|
|
|
|
} else if (n <= 4) {
|
|
|
|
return 2;
|
|
|
|
} else if (n <= 20) {
|
|
|
|
return 3;
|
|
|
|
} else if (n <= 57) {
|
|
|
|
return 4;
|
|
|
|
} else if (n <= 136) {
|
|
|
|
return 5;
|
|
|
|
} else if (n <= 235) {
|
|
|
|
return 6;
|
|
|
|
} else if (n <= 1260) {
|
|
|
|
return 7;
|
|
|
|
} else if (n <= 4420) {
|
|
|
|
return 9;
|
|
|
|
} else if (n <= 7880) {
|
|
|
|
return 10;
|
|
|
|
} else if (n <= 16050) {
|
|
|
|
return 11;
|
|
|
|
} else {
|
|
|
|
return PIPPENGER_MAX_BUCKET_WINDOW;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the maximum optimal number of points for a bucket_window.
|
|
|
|
*/
|
2022-10-08 15:43:43 +00:00
|
|
|
static size_t rustsecp256k1_v0_6_1_pippenger_bucket_window_inv(int bucket_window) {
|
2018-07-09 11:17:44 +00:00
|
|
|
switch(bucket_window) {
|
|
|
|
case 1: return 1;
|
|
|
|
case 2: return 4;
|
|
|
|
case 3: return 20;
|
|
|
|
case 4: return 57;
|
|
|
|
case 5: return 136;
|
|
|
|
case 6: return 235;
|
|
|
|
case 7: return 1260;
|
|
|
|
case 8: return 1260;
|
|
|
|
case 9: return 4420;
|
|
|
|
case 10: return 7880;
|
|
|
|
case 11: return 16050;
|
|
|
|
case PIPPENGER_MAX_BUCKET_WINDOW: return SIZE_MAX;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-10-08 15:43:43 +00:00
|
|
|
SECP256K1_INLINE static void rustsecp256k1_v0_6_1_ecmult_endo_split(rustsecp256k1_v0_6_1_scalar *s1, rustsecp256k1_v0_6_1_scalar *s2, rustsecp256k1_v0_6_1_ge *p1, rustsecp256k1_v0_6_1_ge *p2) {
|
|
|
|
rustsecp256k1_v0_6_1_scalar tmp = *s1;
|
|
|
|
rustsecp256k1_v0_6_1_scalar_split_lambda(s1, s2, &tmp);
|
|
|
|
rustsecp256k1_v0_6_1_ge_mul_lambda(p2, p1);
|
2020-09-15 01:39:26 +00:00
|
|
|
|
2022-10-08 15:43:43 +00:00
|
|
|
if (rustsecp256k1_v0_6_1_scalar_is_high(s1)) {
|
|
|
|
rustsecp256k1_v0_6_1_scalar_negate(s1, s1);
|
|
|
|
rustsecp256k1_v0_6_1_ge_neg(p1, p1);
|
2018-07-09 11:17:44 +00:00
|
|
|
}
|
2022-10-08 15:43:43 +00:00
|
|
|
if (rustsecp256k1_v0_6_1_scalar_is_high(s2)) {
|
|
|
|
rustsecp256k1_v0_6_1_scalar_negate(s2, s2);
|
|
|
|
rustsecp256k1_v0_6_1_ge_neg(p2, p2);
|
2018-07-09 11:17:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the scratch size required for a given number of points (excluding
|
|
|
|
* base point G) without considering alignment.
|
|
|
|
*/
|
2022-10-08 15:43:43 +00:00
|
|
|
static size_t rustsecp256k1_v0_6_1_pippenger_scratch_size(size_t n_points, int bucket_window) {
|
2018-07-09 11:17:44 +00:00
|
|
|
size_t entries = 2*n_points + 2;
|
2022-10-08 15:43:43 +00:00
|
|
|
size_t entry_size = sizeof(rustsecp256k1_v0_6_1_ge) + sizeof(rustsecp256k1_v0_6_1_scalar) + sizeof(struct rustsecp256k1_v0_6_1_pippenger_point_state) + (WNAF_SIZE(bucket_window+1)+1)*sizeof(int);
|
|
|
|
return (sizeof(rustsecp256k1_v0_6_1_gej) << bucket_window) + sizeof(struct rustsecp256k1_v0_6_1_pippenger_state) + entries * entry_size;
|
2018-07-09 11:17:44 +00:00
|
|
|
}
|
|
|
|
|
2022-10-08 15:43:43 +00:00
|
|
|
static int rustsecp256k1_v0_6_1_ecmult_pippenger_batch(const rustsecp256k1_v0_6_1_callback* error_callback, rustsecp256k1_v0_6_1_scratch *scratch, rustsecp256k1_v0_6_1_gej *r, const rustsecp256k1_v0_6_1_scalar *inp_g_sc, rustsecp256k1_v0_6_1_ecmult_multi_callback cb, void *cbdata, size_t n_points, size_t cb_offset) {
|
|
|
|
const size_t scratch_checkpoint = rustsecp256k1_v0_6_1_scratch_checkpoint(error_callback, scratch);
|
2020-12-29 17:15:51 +00:00
|
|
|
/* Use 2(n+1) with the endomorphism, when calculating batch
|
2018-07-09 11:17:44 +00:00
|
|
|
* sizes. The reason for +1 is that we add the G scalar to the list of
|
|
|
|
* other scalars. */
|
|
|
|
size_t entries = 2*n_points + 2;
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_ge *points;
|
|
|
|
rustsecp256k1_v0_6_1_scalar *scalars;
|
|
|
|
rustsecp256k1_v0_6_1_gej *buckets;
|
|
|
|
struct rustsecp256k1_v0_6_1_pippenger_state *state_space;
|
2018-07-09 11:17:44 +00:00
|
|
|
size_t idx = 0;
|
|
|
|
size_t point_idx = 0;
|
|
|
|
int i, j;
|
|
|
|
int bucket_window;
|
|
|
|
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_gej_set_infinity(r);
|
2018-07-09 11:17:44 +00:00
|
|
|
if (inp_g_sc == NULL && n_points == 0) {
|
|
|
|
return 1;
|
|
|
|
}
|
2022-10-08 15:43:43 +00:00
|
|
|
bucket_window = rustsecp256k1_v0_6_1_pippenger_bucket_window(n_points);
|
2018-07-09 11:17:44 +00:00
|
|
|
|
2022-03-08 19:45:41 +00:00
|
|
|
/* We allocate PIPPENGER_SCRATCH_OBJECTS objects on the scratch space. If
|
|
|
|
* these allocations change, make sure to update the
|
|
|
|
* PIPPENGER_SCRATCH_OBJECTS constant and pippenger_scratch_size
|
|
|
|
* accordingly. */
|
2022-10-08 15:43:43 +00:00
|
|
|
points = (rustsecp256k1_v0_6_1_ge *) rustsecp256k1_v0_6_1_scratch_alloc(error_callback, scratch, entries * sizeof(*points));
|
|
|
|
scalars = (rustsecp256k1_v0_6_1_scalar *) rustsecp256k1_v0_6_1_scratch_alloc(error_callback, scratch, entries * sizeof(*scalars));
|
|
|
|
state_space = (struct rustsecp256k1_v0_6_1_pippenger_state *) rustsecp256k1_v0_6_1_scratch_alloc(error_callback, scratch, sizeof(*state_space));
|
2019-05-28 12:23:28 +00:00
|
|
|
if (points == NULL || scalars == NULL || state_space == NULL) {
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_scratch_apply_checkpoint(error_callback, scratch, scratch_checkpoint);
|
2019-05-28 12:23:28 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2022-10-08 15:43:43 +00:00
|
|
|
state_space->ps = (struct rustsecp256k1_v0_6_1_pippenger_point_state *) rustsecp256k1_v0_6_1_scratch_alloc(error_callback, scratch, entries * sizeof(*state_space->ps));
|
|
|
|
state_space->wnaf_na = (int *) rustsecp256k1_v0_6_1_scratch_alloc(error_callback, scratch, entries*(WNAF_SIZE(bucket_window+1)) * sizeof(int));
|
|
|
|
buckets = (rustsecp256k1_v0_6_1_gej *) rustsecp256k1_v0_6_1_scratch_alloc(error_callback, scratch, (1<<bucket_window) * sizeof(*buckets));
|
2019-05-28 12:23:28 +00:00
|
|
|
if (state_space->ps == NULL || state_space->wnaf_na == NULL || buckets == NULL) {
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_scratch_apply_checkpoint(error_callback, scratch, scratch_checkpoint);
|
2018-07-09 11:17:44 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (inp_g_sc != NULL) {
|
|
|
|
scalars[0] = *inp_g_sc;
|
2022-10-08 15:43:43 +00:00
|
|
|
points[0] = rustsecp256k1_v0_6_1_ge_const_g;
|
2018-07-09 11:17:44 +00:00
|
|
|
idx++;
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_ecmult_endo_split(&scalars[0], &scalars[1], &points[0], &points[1]);
|
2018-07-09 11:17:44 +00:00
|
|
|
idx++;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (point_idx < n_points) {
|
|
|
|
if (!cb(&scalars[idx], &points[idx], point_idx + cb_offset, cbdata)) {
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_scratch_apply_checkpoint(error_callback, scratch, scratch_checkpoint);
|
2018-07-09 11:17:44 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
idx++;
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_ecmult_endo_split(&scalars[idx - 1], &scalars[idx], &points[idx - 1], &points[idx]);
|
2018-07-09 11:17:44 +00:00
|
|
|
idx++;
|
|
|
|
point_idx++;
|
|
|
|
}
|
|
|
|
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_ecmult_pippenger_wnaf(buckets, bucket_window, state_space, r, scalars, points, idx);
|
2018-07-09 11:17:44 +00:00
|
|
|
|
|
|
|
/* Clear data */
|
|
|
|
for(i = 0; (size_t)i < idx; i++) {
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_scalar_clear(&scalars[i]);
|
2018-07-09 11:17:44 +00:00
|
|
|
state_space->ps[i].skew_na = 0;
|
|
|
|
for(j = 0; j < WNAF_SIZE(bucket_window+1); j++) {
|
|
|
|
state_space->wnaf_na[i * WNAF_SIZE(bucket_window+1) + j] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for(i = 0; i < 1<<bucket_window; i++) {
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_gej_clear(&buckets[i]);
|
2018-07-09 11:17:44 +00:00
|
|
|
}
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_scratch_apply_checkpoint(error_callback, scratch, scratch_checkpoint);
|
2018-07-09 11:17:44 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2022-10-08 15:43:43 +00:00
|
|
|
/* Wrapper for rustsecp256k1_v0_6_1_ecmult_multi_func interface */
|
|
|
|
static int rustsecp256k1_v0_6_1_ecmult_pippenger_batch_single(const rustsecp256k1_v0_6_1_callback* error_callback, rustsecp256k1_v0_6_1_scratch *scratch, rustsecp256k1_v0_6_1_gej *r, const rustsecp256k1_v0_6_1_scalar *inp_g_sc, rustsecp256k1_v0_6_1_ecmult_multi_callback cb, void *cbdata, size_t n) {
|
|
|
|
return rustsecp256k1_v0_6_1_ecmult_pippenger_batch(error_callback, scratch, r, inp_g_sc, cb, cbdata, n, 0);
|
2018-07-09 11:17:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the maximum number of points in addition to G that can be used with
|
|
|
|
* a given scratch space. The function ensures that fewer points may also be
|
|
|
|
* used.
|
|
|
|
*/
|
2022-10-08 15:43:43 +00:00
|
|
|
static size_t rustsecp256k1_v0_6_1_pippenger_max_points(const rustsecp256k1_v0_6_1_callback* error_callback, rustsecp256k1_v0_6_1_scratch *scratch) {
|
|
|
|
size_t max_alloc = rustsecp256k1_v0_6_1_scratch_max_allocation(error_callback, scratch, PIPPENGER_SCRATCH_OBJECTS);
|
2018-07-09 11:17:44 +00:00
|
|
|
int bucket_window;
|
|
|
|
size_t res = 0;
|
|
|
|
|
|
|
|
for (bucket_window = 1; bucket_window <= PIPPENGER_MAX_BUCKET_WINDOW; bucket_window++) {
|
|
|
|
size_t n_points;
|
2022-10-08 15:43:43 +00:00
|
|
|
size_t max_points = rustsecp256k1_v0_6_1_pippenger_bucket_window_inv(bucket_window);
|
2018-07-09 11:17:44 +00:00
|
|
|
size_t space_for_points;
|
|
|
|
size_t space_overhead;
|
2022-10-08 15:43:43 +00:00
|
|
|
size_t entry_size = sizeof(rustsecp256k1_v0_6_1_ge) + sizeof(rustsecp256k1_v0_6_1_scalar) + sizeof(struct rustsecp256k1_v0_6_1_pippenger_point_state) + (WNAF_SIZE(bucket_window+1)+1)*sizeof(int);
|
2018-07-09 11:17:44 +00:00
|
|
|
|
|
|
|
entry_size = 2*entry_size;
|
2022-10-08 15:43:43 +00:00
|
|
|
space_overhead = (sizeof(rustsecp256k1_v0_6_1_gej) << bucket_window) + entry_size + sizeof(struct rustsecp256k1_v0_6_1_pippenger_state);
|
2018-07-09 11:17:44 +00:00
|
|
|
if (space_overhead > max_alloc) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
space_for_points = max_alloc - space_overhead;
|
|
|
|
|
|
|
|
n_points = space_for_points/entry_size;
|
|
|
|
n_points = n_points > max_points ? max_points : n_points;
|
|
|
|
if (n_points > res) {
|
|
|
|
res = n_points;
|
|
|
|
}
|
|
|
|
if (n_points < max_points) {
|
|
|
|
/* A larger bucket_window may support even more points. But if we
|
|
|
|
* would choose that then the caller couldn't safely use any number
|
|
|
|
* smaller than what this function returns */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2019-05-28 12:23:28 +00:00
|
|
|
/* Computes ecmult_multi by simply multiplying and adding each point. Does not
|
|
|
|
* require a scratch space */
|
2022-10-08 15:43:43 +00:00
|
|
|
static int rustsecp256k1_v0_6_1_ecmult_multi_simple_var(rustsecp256k1_v0_6_1_gej *r, const rustsecp256k1_v0_6_1_scalar *inp_g_sc, rustsecp256k1_v0_6_1_ecmult_multi_callback cb, void *cbdata, size_t n_points) {
|
2019-05-28 12:23:28 +00:00
|
|
|
size_t point_idx;
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_scalar szero;
|
|
|
|
rustsecp256k1_v0_6_1_gej tmpj;
|
2019-05-28 12:23:28 +00:00
|
|
|
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_scalar_set_int(&szero, 0);
|
|
|
|
rustsecp256k1_v0_6_1_gej_set_infinity(r);
|
|
|
|
rustsecp256k1_v0_6_1_gej_set_infinity(&tmpj);
|
2019-05-28 12:23:28 +00:00
|
|
|
/* r = inp_g_sc*G */
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_ecmult(r, &tmpj, &szero, inp_g_sc);
|
2019-05-28 12:23:28 +00:00
|
|
|
for (point_idx = 0; point_idx < n_points; point_idx++) {
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_ge point;
|
|
|
|
rustsecp256k1_v0_6_1_gej pointj;
|
|
|
|
rustsecp256k1_v0_6_1_scalar scalar;
|
2019-05-28 12:23:28 +00:00
|
|
|
if (!cb(&scalar, &point, point_idx, cbdata)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
/* r += scalar*point */
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_gej_set_ge(&pointj, &point);
|
|
|
|
rustsecp256k1_v0_6_1_ecmult(&tmpj, &pointj, &scalar, NULL);
|
|
|
|
rustsecp256k1_v0_6_1_gej_add_var(r, r, &tmpj, NULL);
|
2019-05-28 12:23:28 +00:00
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Compute the number of batches and the batch size given the maximum batch size and the
|
|
|
|
* total number of points */
|
2022-10-08 15:43:43 +00:00
|
|
|
static int rustsecp256k1_v0_6_1_ecmult_multi_batch_size_helper(size_t *n_batches, size_t *n_batch_points, size_t max_n_batch_points, size_t n) {
|
2019-05-28 12:23:28 +00:00
|
|
|
if (max_n_batch_points == 0) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (max_n_batch_points > ECMULT_MAX_POINTS_PER_BATCH) {
|
|
|
|
max_n_batch_points = ECMULT_MAX_POINTS_PER_BATCH;
|
|
|
|
}
|
|
|
|
if (n == 0) {
|
|
|
|
*n_batches = 0;
|
|
|
|
*n_batch_points = 0;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
/* Compute ceil(n/max_n_batch_points) and ceil(n/n_batches) */
|
|
|
|
*n_batches = 1 + (n - 1) / max_n_batch_points;
|
|
|
|
*n_batch_points = 1 + (n - 1) / *n_batches;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2022-10-08 15:43:43 +00:00
|
|
|
typedef int (*rustsecp256k1_v0_6_1_ecmult_multi_func)(const rustsecp256k1_v0_6_1_callback* error_callback, rustsecp256k1_v0_6_1_scratch*, rustsecp256k1_v0_6_1_gej*, const rustsecp256k1_v0_6_1_scalar*, rustsecp256k1_v0_6_1_ecmult_multi_callback cb, void*, size_t);
|
|
|
|
static int rustsecp256k1_v0_6_1_ecmult_multi_var(const rustsecp256k1_v0_6_1_callback* error_callback, rustsecp256k1_v0_6_1_scratch *scratch, rustsecp256k1_v0_6_1_gej *r, const rustsecp256k1_v0_6_1_scalar *inp_g_sc, rustsecp256k1_v0_6_1_ecmult_multi_callback cb, void *cbdata, size_t n) {
|
2018-07-09 11:17:44 +00:00
|
|
|
size_t i;
|
|
|
|
|
2022-10-08 15:43:43 +00:00
|
|
|
int (*f)(const rustsecp256k1_v0_6_1_callback* error_callback, rustsecp256k1_v0_6_1_scratch*, rustsecp256k1_v0_6_1_gej*, const rustsecp256k1_v0_6_1_scalar*, rustsecp256k1_v0_6_1_ecmult_multi_callback cb, void*, size_t, size_t);
|
2018-07-09 11:17:44 +00:00
|
|
|
size_t n_batches;
|
|
|
|
size_t n_batch_points;
|
|
|
|
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_gej_set_infinity(r);
|
2018-07-09 11:17:44 +00:00
|
|
|
if (inp_g_sc == NULL && n == 0) {
|
|
|
|
return 1;
|
|
|
|
} else if (n == 0) {
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_scalar szero;
|
|
|
|
rustsecp256k1_v0_6_1_scalar_set_int(&szero, 0);
|
|
|
|
rustsecp256k1_v0_6_1_ecmult(r, r, &szero, inp_g_sc);
|
2018-07-09 11:17:44 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2019-05-28 12:23:28 +00:00
|
|
|
if (scratch == NULL) {
|
2022-10-08 15:43:43 +00:00
|
|
|
return rustsecp256k1_v0_6_1_ecmult_multi_simple_var(r, inp_g_sc, cb, cbdata, n);
|
2018-07-09 11:17:44 +00:00
|
|
|
}
|
|
|
|
|
2019-05-28 12:23:28 +00:00
|
|
|
/* Compute the batch sizes for Pippenger's algorithm given a scratch space. If it's greater than
|
|
|
|
* a threshold use Pippenger's algorithm. Otherwise use Strauss' algorithm.
|
|
|
|
* As a first step check if there's enough space for Pippenger's algo (which requires less space
|
|
|
|
* than Strauss' algo) and if not, use the simple algorithm. */
|
2022-10-08 15:43:43 +00:00
|
|
|
if (!rustsecp256k1_v0_6_1_ecmult_multi_batch_size_helper(&n_batches, &n_batch_points, rustsecp256k1_v0_6_1_pippenger_max_points(error_callback, scratch), n)) {
|
|
|
|
return rustsecp256k1_v0_6_1_ecmult_multi_simple_var(r, inp_g_sc, cb, cbdata, n);
|
2019-05-28 12:23:28 +00:00
|
|
|
}
|
2018-07-09 11:17:44 +00:00
|
|
|
if (n_batch_points >= ECMULT_PIPPENGER_THRESHOLD) {
|
2022-10-08 15:43:43 +00:00
|
|
|
f = rustsecp256k1_v0_6_1_ecmult_pippenger_batch;
|
2018-07-09 11:17:44 +00:00
|
|
|
} else {
|
2022-10-08 15:43:43 +00:00
|
|
|
if (!rustsecp256k1_v0_6_1_ecmult_multi_batch_size_helper(&n_batches, &n_batch_points, rustsecp256k1_v0_6_1_strauss_max_points(error_callback, scratch), n)) {
|
|
|
|
return rustsecp256k1_v0_6_1_ecmult_multi_simple_var(r, inp_g_sc, cb, cbdata, n);
|
2018-07-09 11:17:44 +00:00
|
|
|
}
|
2022-10-08 15:43:43 +00:00
|
|
|
f = rustsecp256k1_v0_6_1_ecmult_strauss_batch;
|
2018-07-09 11:17:44 +00:00
|
|
|
}
|
|
|
|
for(i = 0; i < n_batches; i++) {
|
|
|
|
size_t nbp = n < n_batch_points ? n : n_batch_points;
|
|
|
|
size_t offset = n_batch_points*i;
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_gej tmp;
|
2022-03-08 19:45:41 +00:00
|
|
|
if (!f(error_callback, scratch, &tmp, i == 0 ? inp_g_sc : NULL, cb, cbdata, nbp, offset)) {
|
2018-07-09 11:17:44 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2022-10-08 15:43:43 +00:00
|
|
|
rustsecp256k1_v0_6_1_gej_add_var(r, r, &tmp, NULL);
|
2018-07-09 11:17:44 +00:00
|
|
|
n -= nbp;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* SECP256K1_ECMULT_IMPL_H */
|