Skip to content

Commit a127bfe

Browse files
committed
Add x-only ecmult_const version for x=n/d
1 parent 8baa1e0 commit a127bfe

File tree

3 files changed

+136
-0
lines changed

3 files changed

+136
-0
lines changed

src/ecmult_const.h

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,23 @@
1818
*/
1919
static void secp256k1_ecmult_const(secp256k1_gej *r, const secp256k1_ge *a, const secp256k1_scalar *q, int bits);
2020

21+
/**
22+
* Same as secp256k1_ecmult_const, but takes in an x coordinate of the base point
23+
* only, specified as fraction n/d. Only the x coordinate of the result is returned.
24+
*
25+
* If known_on_curve is 0, a verification is performed that n/d is a valid X
26+
* coordinate, and 0 is returned if not. Otherwise, 1 is returned.
27+
*
28+
* d being NULL is interpreted as d=1.
29+
*
30+
* Constant time in the value of q, but not any other inputs.
31+
*/
32+
static int secp256k1_ecmult_const_xonly(
33+
secp256k1_fe* r,
34+
const secp256k1_fe *n,
35+
const secp256k1_fe *d,
36+
const secp256k1_scalar *q,
37+
int bits,
38+
int known_on_curve);
39+
2140
#endif /* SECP256K1_ECMULT_CONST_H */

src/ecmult_const_impl.h

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -228,4 +228,58 @@ static void secp256k1_ecmult_const(secp256k1_gej *r, const secp256k1_ge *a, cons
228228
secp256k1_fe_mul(&r->z, &r->z, &Z);
229229
}
230230

231+
static int secp256k1_ecmult_const_xonly(secp256k1_fe* r, const secp256k1_fe *n, const secp256k1_fe *d, const secp256k1_scalar *q, int bits, int known_on_curve) {
232+
233+
/* This algorithm is a generalization of Peter Dettman's technique for
234+
* avoiding the square root in a random-basepoint x-only multiplication
235+
* on a Weierstrass curve:
236+
* https://mailarchive.ietf.org/arch/msg/cfrg/7DyYY6gg32wDgHAhgSb6XxMDlJA/
237+
*/
238+
secp256k1_fe g, i;
239+
secp256k1_ge p;
240+
secp256k1_gej rj;
241+
242+
/* Compute g = (n^3 + B*d^3). */
243+
secp256k1_fe_sqr(&g, n);
244+
secp256k1_fe_mul(&g, &g, n);
245+
if (d) {
246+
secp256k1_fe b;
247+
secp256k1_fe_sqr(&b, d);
248+
secp256k1_fe_mul(&b, &b, d);
249+
secp256k1_fe_mul(&b, &b, &secp256k1_fe_const_b);
250+
secp256k1_fe_add(&g, &b);
251+
if (!known_on_curve) {
252+
secp256k1_fe c;
253+
secp256k1_fe_mul(&c, &g, d);
254+
if (secp256k1_fe_jacobi_var(&c) < 0) return 0;
255+
}
256+
} else {
257+
secp256k1_fe_add(&g, &secp256k1_fe_const_b);
258+
if (!known_on_curve) {
259+
if (secp256k1_fe_jacobi_var(&g) < 0) return 0;
260+
}
261+
}
262+
263+
/* Compute base point P = (n*g, g^2), the effective affine version of
264+
* (n*g, g^2, sqrt(d*g)), which has corresponding affine X coordinate
265+
* n/d. */
266+
secp256k1_fe_mul(&p.x, &g, n);
267+
secp256k1_fe_sqr(&p.y, &g);
268+
p.infinity = 0;
269+
270+
/* Perform x-only EC multiplication of P with q. */
271+
secp256k1_ecmult_const(&rj, &p, q, bits);
272+
273+
/* The resulting (X, Y, Z) point on the effective-affine isomorphic curve
274+
* corresponds to (X, Y, Z*sqrt(d*g)) on the secp256k1 curve. The affine
275+
* version of that has X coordinate (X / (Z^2*d*g)). */
276+
secp256k1_fe_sqr(&i, &rj.z);
277+
secp256k1_fe_mul(&i, &i, &g);
278+
if (d) secp256k1_fe_mul(&i, &i, d);
279+
secp256k1_fe_inv(&i, &i);
280+
secp256k1_fe_mul(r, &rj.x, &i);
281+
282+
return 1;
283+
}
284+
231285
#endif /* SECP256K1_ECMULT_CONST_IMPL_H */

src/tests.c

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4023,6 +4023,68 @@ void ecmult_const_mult_zero_one(void) {
40234023
ge_equals_ge(&res2, &point);
40244024
}
40254025

4026+
void ecmult_const_mult_xonly(void) {
4027+
int i;
4028+
4029+
/* Test correspondence between secp256k1_ecmult_const and secp256k1_ecmult_const_xonly. */
4030+
for (i = 0; i < 2*count; ++i) {
4031+
secp256k1_ge base;
4032+
secp256k1_gej basej, resj;
4033+
secp256k1_fe n, d, resx, v;
4034+
secp256k1_scalar q;
4035+
int res;
4036+
/* Random base point. */
4037+
random_group_element_test(&base);
4038+
/* Random scalar to multiply it with. */
4039+
random_scalar_order_test(&q);
4040+
/* If i is odd, n=d*base.x for random non-zero d */
4041+
if (i & 1) {
4042+
do {
4043+
random_field_element_test(&d);
4044+
} while (secp256k1_fe_normalizes_to_zero_var(&d));
4045+
secp256k1_fe_mul(&n, &base.x, &d);
4046+
} else {
4047+
n = base.x;
4048+
}
4049+
/* Perform x-only multiplication. */
4050+
res = secp256k1_ecmult_const_xonly(&resx, &n, (i & 1) ? &d : NULL, &q, 256, i & 2);
4051+
CHECK(res);
4052+
/* Perform normal multiplication. */
4053+
secp256k1_gej_set_ge(&basej, &base);
4054+
secp256k1_ecmult(&resj, &basej, &q, NULL);
4055+
/* Check that resj's X coordinate corresponds with resx. */
4056+
secp256k1_fe_sqr(&v, &resj.z);
4057+
secp256k1_fe_mul(&v, &v, &resx);
4058+
CHECK(check_fe_equal(&v, &resj.x));
4059+
}
4060+
4061+
/* Test that secp256k1_ecmult_const_xonly correctly rejects X coordinates not on curve. */
4062+
for (i = 0; i < 2*count; ++i) {
4063+
secp256k1_fe x, n, d, c, r;
4064+
int res;
4065+
secp256k1_scalar q;
4066+
random_scalar_order_test(&q);
4067+
/* Generate random X coordinate not on the curve. */
4068+
do {
4069+
random_field_element_test(&x);
4070+
secp256k1_fe_sqr(&c, &x);
4071+
secp256k1_fe_mul(&c, &c, &x);
4072+
secp256k1_fe_add(&c, &secp256k1_fe_const_b);
4073+
} while (secp256k1_fe_jacobi_var(&c) >= 0);
4074+
/* If i is odd, n=d*x for random non-zero d. */
4075+
if (i & 1) {
4076+
do {
4077+
random_field_element_test(&d);
4078+
} while (secp256k1_fe_normalizes_to_zero_var(&d));
4079+
secp256k1_fe_mul(&n, &x, &d);
4080+
} else {
4081+
n = x;
4082+
}
4083+
res = secp256k1_ecmult_const_xonly(&r, &n, (i & 1) ? &d : NULL, &q, 256, 0);
4084+
CHECK(res == 0);
4085+
}
4086+
}
4087+
40264088
void ecmult_const_chain_multiply(void) {
40274089
/* Check known result (randomly generated test problem from sage) */
40284090
const secp256k1_scalar scalar = SECP256K1_SCALAR_CONST(
@@ -4054,6 +4116,7 @@ void run_ecmult_const_tests(void) {
40544116
ecmult_const_random_mult();
40554117
ecmult_const_commutativity();
40564118
ecmult_const_chain_multiply();
4119+
ecmult_const_mult_xonly();
40574120
}
40584121

40594122
typedef struct {

0 commit comments

Comments
 (0)