Bitcoin ABC 0.33.8
P2P Digital Currency
group_impl.h
Go to the documentation of this file.
1/***********************************************************************
2 * Copyright (c) 2013, 2014 Pieter Wuille *
3 * Distributed under the MIT software license, see the accompanying *
4 * file COPYING or https://www.opensource.org/licenses/mit-license.php.*
5 ***********************************************************************/
6
7#ifndef SECP256K1_GROUP_IMPL_H
8#define SECP256K1_GROUP_IMPL_H
9
10#include "field.h"
11#include "group.h"
12#include "util.h"
13
14/* Begin of section generated by sage/gen_exhaustive_groups.sage. */
15#define SECP256K1_G_ORDER_7 SECP256K1_GE_CONST(\
16 0x66625d13, 0x317ffe44, 0x63d32cff, 0x1ca02b9b,\
17 0xe5c6d070, 0x50b4b05e, 0x81cc30db, 0xf5166f0a,\
18 0x1e60e897, 0xa7c00c7c, 0x2df53eb6, 0x98274ff4,\
19 0x64252f42, 0x8ca44e17, 0x3b25418c, 0xff4ab0cf\
20)
21#define SECP256K1_G_ORDER_13 SECP256K1_GE_CONST(\
22 0xa2482ff8, 0x4bf34edf, 0xa51262fd, 0xe57921db,\
23 0xe0dd2cb7, 0xa5914790, 0xbc71631f, 0xc09704fb,\
24 0x942536cb, 0xa3e49492, 0x3a701cc3, 0xee3e443f,\
25 0xdf182aa9, 0x15b8aa6a, 0x166d3b19, 0xba84b045\
26)
27#define SECP256K1_G_ORDER_199 SECP256K1_GE_CONST(\
28 0x7fb07b5c, 0xd07c3bda, 0x553902e2, 0x7a87ea2c,\
29 0x35108a7f, 0x051f41e5, 0xb76abad5, 0x1f2703ad,\
30 0x0a251539, 0x5b4c4438, 0x952a634f, 0xac10dd4d,\
31 0x6d6f4745, 0x98990c27, 0x3a4f3116, 0xd32ff969\
32)
36#define SECP256K1_G SECP256K1_GE_CONST(\
37 0x79be667e, 0xf9dcbbac, 0x55a06295, 0xce870b07,\
38 0x029bfcdb, 0x2dce28d9, 0x59f2815b, 0x16f81798,\
39 0x483ada77, 0x26a3c465, 0x5da4fbfc, 0x0e1108a8,\
40 0xfd17b448, 0xa6855419, 0x9c47d08f, 0xfb10d4b8\
41)
42/* These exhaustive group test orders and generators are chosen such that:
43 * - The field size is equal to that of secp256k1, so field code is the same.
44 * - The curve equation is of the form y^2=x^3+B for some small constant B.
45 * - The subgroup has a generator 2*P, where P.x is as small as possible.
46 * - The subgroup has size less than 1000 to permit exhaustive testing.
47 * - The subgroup admits an endomorphism of the form lambda*(x,y) == (beta*x,y).
48 */
49#if defined(EXHAUSTIVE_TEST_ORDER)
50# if EXHAUSTIVE_TEST_ORDER == 7
51
53#define SECP256K1_B 6
54
55# elif EXHAUSTIVE_TEST_ORDER == 13
56
58#define SECP256K1_B 2
59
60# elif EXHAUSTIVE_TEST_ORDER == 199
61
63#define SECP256K1_B 4
64
65# else
66# error No known generator for the specified exhaustive test group order.
67# endif
68#else
69
71#define SECP256K1_B 7
72
73#endif
74/* End of section generated by sage/gen_exhaustive_groups.sage. */
75
76static void secp256k1_ge_verify(const secp256k1_ge *a) {
81 VERIFY_CHECK(a->infinity == 0 || a->infinity == 1);
82 (void)a;
83}
84
85static void secp256k1_gej_verify(const secp256k1_gej *a) {
92 VERIFY_CHECK(a->infinity == 0 || a->infinity == 1);
93 (void)a;
94}
95
96/* Set r to the affine coordinates of Jacobian point (a.x, a.y, 1/zi). */
98 secp256k1_fe zi2;
99 secp256k1_fe zi3;
103
104 secp256k1_fe_sqr(&zi2, zi);
105 secp256k1_fe_mul(&zi3, &zi2, zi);
106 secp256k1_fe_mul(&r->x, &a->x, &zi2);
107 secp256k1_fe_mul(&r->y, &a->y, &zi3);
108 r->infinity = a->infinity;
109
111}
112
113/* Set r to the affine coordinates of Jacobian point (a.x, a.y, 1/zi). */
115 secp256k1_fe zi2;
116 secp256k1_fe zi3;
120
121 secp256k1_fe_sqr(&zi2, zi);
122 secp256k1_fe_mul(&zi3, &zi2, zi);
123 secp256k1_fe_mul(&r->x, &a->x, &zi2);
124 secp256k1_fe_mul(&r->y, &a->y, &zi3);
125 r->infinity = a->infinity;
126
128}
129
130static void secp256k1_ge_set_xy(secp256k1_ge *r, const secp256k1_fe *x, const secp256k1_fe *y) {
133
134 r->infinity = 0;
135 r->x = *x;
136 r->y = *y;
137
139}
140
143
144 return a->infinity;
145}
146
147static void secp256k1_ge_neg(secp256k1_ge *r, const secp256k1_ge *a) {
149
150 *r = *a;
152 secp256k1_fe_negate(&r->y, &r->y, 1);
153
155}
156
158 secp256k1_fe z2, z3;
160
161 r->infinity = a->infinity;
162 secp256k1_fe_inv(&a->z, &a->z);
163 secp256k1_fe_sqr(&z2, &a->z);
164 secp256k1_fe_mul(&z3, &a->z, &z2);
165 secp256k1_fe_mul(&a->x, &a->x, &z2);
166 secp256k1_fe_mul(&a->y, &a->y, &z3);
167 secp256k1_fe_set_int(&a->z, 1);
168 r->x = a->x;
169 r->y = a->y;
170
173}
174
176 secp256k1_fe z2, z3;
178
181 return;
182 }
183 r->infinity = 0;
184 secp256k1_fe_inv_var(&a->z, &a->z);
185 secp256k1_fe_sqr(&z2, &a->z);
186 secp256k1_fe_mul(&z3, &a->z, &z2);
187 secp256k1_fe_mul(&a->x, &a->x, &z2);
188 secp256k1_fe_mul(&a->y, &a->y, &z3);
189 secp256k1_fe_set_int(&a->z, 1);
190 secp256k1_ge_set_xy(r, &a->x, &a->y);
191
194}
195
196static void secp256k1_ge_set_all_gej_var(secp256k1_ge *r, const secp256k1_gej *a, size_t len) {
197 secp256k1_fe u;
198 size_t i;
199 size_t last_i = SIZE_MAX;
200#ifdef VERIFY
201 for (i = 0; i < len; i++) {
203 }
204#endif
205
206 for (i = 0; i < len; i++) {
207 if (a[i].infinity) {
209 } else {
210 /* Use destination's x coordinates as scratch space */
211 if (last_i == SIZE_MAX) {
212 r[i].x = a[i].z;
213 } else {
214 secp256k1_fe_mul(&r[i].x, &r[last_i].x, &a[i].z);
215 }
216 last_i = i;
217 }
218 }
219 if (last_i == SIZE_MAX) {
220 return;
221 }
222 secp256k1_fe_inv_var(&u, &r[last_i].x);
223
224 i = last_i;
225 while (i > 0) {
226 i--;
227 if (!a[i].infinity) {
228 secp256k1_fe_mul(&r[last_i].x, &r[i].x, &u);
229 secp256k1_fe_mul(&u, &u, &a[last_i].z);
230 last_i = i;
231 }
232 }
233 VERIFY_CHECK(!a[last_i].infinity);
234 r[last_i].x = u;
235
236 for (i = 0; i < len; i++) {
237 if (!a[i].infinity) {
238 secp256k1_ge_set_gej_zinv(&r[i], &a[i], &r[i].x);
239 }
240 }
241
242#ifdef VERIFY
243 for (i = 0; i < len; i++) {
244 SECP256K1_GE_VERIFY(&r[i]);
245 }
246#endif
247}
248
249static void secp256k1_ge_table_set_globalz(size_t len, secp256k1_ge *a, const secp256k1_fe *zr) {
250 size_t i;
251 secp256k1_fe zs;
252#ifdef VERIFY
253 for (i = 0; i < len; i++) {
254 SECP256K1_GE_VERIFY(&a[i]);
255 SECP256K1_FE_VERIFY(&zr[i]);
256 }
257#endif
258
259 if (len > 0) {
260 i = len - 1;
261 /* Ensure all y values are in weak normal form for fast negation of points */
263 zs = zr[i];
264
265 /* Work our way backwards, using the z-ratios to scale the x/y values. */
266 while (i > 0) {
267 if (i != len - 1) {
268 secp256k1_fe_mul(&zs, &zs, &zr[i]);
269 }
270 i--;
271 secp256k1_ge_set_ge_zinv(&a[i], &a[i], &zs);
272 }
273 }
274
275#ifdef VERIFY
276 for (i = 0; i < len; i++) {
277 SECP256K1_GE_VERIFY(&a[i]);
278 }
279#endif
280}
281
283 r->infinity = 1;
287
289}
290
292 r->infinity = 1;
295
297}
298
300 r->infinity = 0;
304
306}
307
309 r->infinity = 0;
312
314}
315
317 secp256k1_fe x2, x3;
319
320 r->x = *x;
321 secp256k1_fe_sqr(&x2, x);
322 secp256k1_fe_mul(&x3, x, &x2);
323 r->infinity = 0;
325 return secp256k1_fe_sqrt(&r->y, &x3);
326}
327
328static int secp256k1_ge_set_xo_var(secp256k1_ge *r, const secp256k1_fe *x, int odd) {
329 int ret = secp256k1_ge_set_xquad(r, x);
331 if (secp256k1_fe_is_odd(&r->y) != odd) {
332 secp256k1_fe_negate(&r->y, &r->y, 1);
333 }
334
336 return ret;
337}
338
341
342 r->infinity = a->infinity;
343 r->x = a->x;
344 r->y = a->y;
345 secp256k1_fe_set_int(&r->z, 1);
346
348}
349
350static int secp256k1_gej_eq_var(const secp256k1_gej *a, const secp256k1_gej *b) {
351 secp256k1_gej tmp;
354
355 secp256k1_gej_neg(&tmp, a);
356 secp256k1_gej_add_var(&tmp, &tmp, b, NULL);
357 return secp256k1_gej_is_infinity(&tmp);
358}
359
360static int secp256k1_gej_eq_ge_var(const secp256k1_gej *a, const secp256k1_ge *b) {
361 secp256k1_gej tmp;
364
365 secp256k1_gej_neg(&tmp, a);
366 secp256k1_gej_add_ge_var(&tmp, &tmp, b, NULL);
367 return secp256k1_gej_is_infinity(&tmp);
368}
369
370static int secp256k1_ge_eq_var(const secp256k1_ge *a, const secp256k1_ge *b) {
371 secp256k1_fe tmp;
374
375 if (a->infinity != b->infinity) return 0;
376 if (a->infinity) return 1;
377
378 tmp = a->x;
380 if (!secp256k1_fe_equal(&tmp, &b->x)) return 0;
381
382 tmp = a->y;
384 if (!secp256k1_fe_equal(&tmp, &b->y)) return 0;
385
386 return 1;
387}
388
389static int secp256k1_gej_eq_x_var(const secp256k1_fe *x, const secp256k1_gej *a) {
390 secp256k1_fe r;
394
395 secp256k1_fe_sqr(&r, &a->z); secp256k1_fe_mul(&r, &r, x);
396 return secp256k1_fe_equal(&r, &a->x);
397}
398
401
402 r->infinity = a->infinity;
403 r->x = a->x;
404 r->y = a->y;
405 r->z = a->z;
407 secp256k1_fe_negate(&r->y, &r->y, 1);
408
410}
411
414
415 return a->infinity;
416}
417
419 secp256k1_fe y2, x3;
421
422 if (a->infinity) {
423 return 0;
424 }
425 /* y^2 = x^3 + 7 */
426 secp256k1_fe_sqr(&y2, &a->y);
427 secp256k1_fe_sqr(&x3, &a->x); secp256k1_fe_mul(&x3, &x3, &a->x);
429 return secp256k1_fe_equal(&y2, &x3);
430}
431
433 /* Operations: 3 mul, 4 sqr, 8 add/half/mul_int/negate */
434 secp256k1_fe l, s, t;
436
437 r->infinity = a->infinity;
438
439 /* Formula used:
440 * L = (3/2) * X1^2
441 * S = Y1^2
442 * T = -X1*S
443 * X3 = L^2 + 2*T
444 * Y3 = -(L*(X3 + T) + S^2)
445 * Z3 = Y1*Z1
446 */
447
448 secp256k1_fe_mul(&r->z, &a->z, &a->y); /* Z3 = Y1*Z1 (1) */
449 secp256k1_fe_sqr(&s, &a->y); /* S = Y1^2 (1) */
450 secp256k1_fe_sqr(&l, &a->x); /* L = X1^2 (1) */
451 secp256k1_fe_mul_int(&l, 3); /* L = 3*X1^2 (3) */
452 secp256k1_fe_half(&l); /* L = 3/2*X1^2 (2) */
453 secp256k1_fe_negate(&t, &s, 1); /* T = -S (2) */
454 secp256k1_fe_mul(&t, &t, &a->x); /* T = -X1*S (1) */
455 secp256k1_fe_sqr(&r->x, &l); /* X3 = L^2 (1) */
456 secp256k1_fe_add(&r->x, &t); /* X3 = L^2 + T (2) */
457 secp256k1_fe_add(&r->x, &t); /* X3 = L^2 + 2*T (3) */
458 secp256k1_fe_sqr(&s, &s); /* S' = S^2 (1) */
459 secp256k1_fe_add(&t, &r->x); /* T' = X3 + T (4) */
460 secp256k1_fe_mul(&r->y, &t, &l); /* Y3 = L*(X3 + T) (1) */
461 secp256k1_fe_add(&r->y, &s); /* Y3 = L*(X3 + T) + S^2 (2) */
462 secp256k1_fe_negate(&r->y, &r->y, 2); /* Y3 = -(L*(X3 + T) + S^2) (3) */
463
465}
466
469
480 if (a->infinity) {
482 if (rzr != NULL) {
483 secp256k1_fe_set_int(rzr, 1);
484 }
485 return;
486 }
487
488 if (rzr != NULL) {
489 *rzr = a->y;
491 }
492
494
496}
497
499 /* 12 mul, 4 sqr, 11 add/negate/normalizes_to_zero (ignoring special cases) */
500 secp256k1_fe z22, z12, u1, u2, s1, s2, h, i, h2, h3, t;
503
504 if (a->infinity) {
505 VERIFY_CHECK(rzr == NULL);
506 *r = *b;
507 return;
508 }
509 if (b->infinity) {
510 if (rzr != NULL) {
511 secp256k1_fe_set_int(rzr, 1);
512 }
513 *r = *a;
514 return;
515 }
516
517 secp256k1_fe_sqr(&z22, &b->z);
518 secp256k1_fe_sqr(&z12, &a->z);
519 secp256k1_fe_mul(&u1, &a->x, &z22);
520 secp256k1_fe_mul(&u2, &b->x, &z12);
521 secp256k1_fe_mul(&s1, &a->y, &z22); secp256k1_fe_mul(&s1, &s1, &b->z);
522 secp256k1_fe_mul(&s2, &b->y, &z12); secp256k1_fe_mul(&s2, &s2, &a->z);
523 secp256k1_fe_negate(&h, &u1, 1); secp256k1_fe_add(&h, &u2);
524 secp256k1_fe_negate(&i, &s2, 1); secp256k1_fe_add(&i, &s1);
527 secp256k1_gej_double_var(r, a, rzr);
528 } else {
529 if (rzr != NULL) {
530 secp256k1_fe_set_int(rzr, 0);
531 }
533 }
534 return;
535 }
536
537 r->infinity = 0;
538 secp256k1_fe_mul(&t, &h, &b->z);
539 if (rzr != NULL) {
540 *rzr = t;
541 }
542 secp256k1_fe_mul(&r->z, &a->z, &t);
543
544 secp256k1_fe_sqr(&h2, &h);
545 secp256k1_fe_negate(&h2, &h2, 1);
546 secp256k1_fe_mul(&h3, &h2, &h);
547 secp256k1_fe_mul(&t, &u1, &h2);
548
549 secp256k1_fe_sqr(&r->x, &i);
550 secp256k1_fe_add(&r->x, &h3);
551 secp256k1_fe_add(&r->x, &t);
552 secp256k1_fe_add(&r->x, &t);
553
554 secp256k1_fe_add(&t, &r->x);
555 secp256k1_fe_mul(&r->y, &t, &i);
556 secp256k1_fe_mul(&h3, &h3, &s1);
557 secp256k1_fe_add(&r->y, &h3);
558
560}
561
563 /* Operations: 8 mul, 3 sqr, 11 add/negate/normalizes_to_zero (ignoring special cases) */
564 secp256k1_fe z12, u1, u2, s1, s2, h, i, h2, h3, t;
567
568 if (a->infinity) {
569 VERIFY_CHECK(rzr == NULL);
571 return;
572 }
573 if (b->infinity) {
574 if (rzr != NULL) {
575 secp256k1_fe_set_int(rzr, 1);
576 }
577 *r = *a;
578 return;
579 }
580
581 secp256k1_fe_sqr(&z12, &a->z);
582 u1 = a->x;
583 secp256k1_fe_mul(&u2, &b->x, &z12);
584 s1 = a->y;
585 secp256k1_fe_mul(&s2, &b->y, &z12); secp256k1_fe_mul(&s2, &s2, &a->z);
587 secp256k1_fe_negate(&i, &s2, 1); secp256k1_fe_add(&i, &s1);
590 secp256k1_gej_double_var(r, a, rzr);
591 } else {
592 if (rzr != NULL) {
593 secp256k1_fe_set_int(rzr, 0);
594 }
596 }
597 return;
598 }
599
600 r->infinity = 0;
601 if (rzr != NULL) {
602 *rzr = h;
603 }
604 secp256k1_fe_mul(&r->z, &a->z, &h);
605
606 secp256k1_fe_sqr(&h2, &h);
607 secp256k1_fe_negate(&h2, &h2, 1);
608 secp256k1_fe_mul(&h3, &h2, &h);
609 secp256k1_fe_mul(&t, &u1, &h2);
610
611 secp256k1_fe_sqr(&r->x, &i);
612 secp256k1_fe_add(&r->x, &h3);
613 secp256k1_fe_add(&r->x, &t);
614 secp256k1_fe_add(&r->x, &t);
615
616 secp256k1_fe_add(&t, &r->x);
617 secp256k1_fe_mul(&r->y, &t, &i);
618 secp256k1_fe_mul(&h3, &h3, &s1);
619 secp256k1_fe_add(&r->y, &h3);
620
622 if (rzr != NULL) SECP256K1_FE_VERIFY(rzr);
623}
624
625static void secp256k1_gej_add_zinv_var(secp256k1_gej *r, const secp256k1_gej *a, const secp256k1_ge *b, const secp256k1_fe *bzinv) {
626 /* Operations: 9 mul, 3 sqr, 11 add/negate/normalizes_to_zero (ignoring special cases) */
627 secp256k1_fe az, z12, u1, u2, s1, s2, h, i, h2, h3, t;
630 SECP256K1_FE_VERIFY(bzinv);
631
632 if (a->infinity) {
633 secp256k1_fe bzinv2, bzinv3;
634 r->infinity = b->infinity;
635 secp256k1_fe_sqr(&bzinv2, bzinv);
636 secp256k1_fe_mul(&bzinv3, &bzinv2, bzinv);
637 secp256k1_fe_mul(&r->x, &b->x, &bzinv2);
638 secp256k1_fe_mul(&r->y, &b->y, &bzinv3);
639 secp256k1_fe_set_int(&r->z, 1);
641 return;
642 }
643 if (b->infinity) {
644 *r = *a;
645 return;
646 }
647
656 secp256k1_fe_mul(&az, &a->z, bzinv);
657
658 secp256k1_fe_sqr(&z12, &az);
659 u1 = a->x;
660 secp256k1_fe_mul(&u2, &b->x, &z12);
661 s1 = a->y;
662 secp256k1_fe_mul(&s2, &b->y, &z12); secp256k1_fe_mul(&s2, &s2, &az);
664 secp256k1_fe_negate(&i, &s2, 1); secp256k1_fe_add(&i, &s1);
667 secp256k1_gej_double_var(r, a, NULL);
668 } else {
670 }
671 return;
672 }
673
674 r->infinity = 0;
675 secp256k1_fe_mul(&r->z, &a->z, &h);
676
677 secp256k1_fe_sqr(&h2, &h);
678 secp256k1_fe_negate(&h2, &h2, 1);
679 secp256k1_fe_mul(&h3, &h2, &h);
680 secp256k1_fe_mul(&t, &u1, &h2);
681
682 secp256k1_fe_sqr(&r->x, &i);
683 secp256k1_fe_add(&r->x, &h3);
684 secp256k1_fe_add(&r->x, &t);
685 secp256k1_fe_add(&r->x, &t);
686
687 secp256k1_fe_add(&t, &r->x);
688 secp256k1_fe_mul(&r->y, &t, &i);
689 secp256k1_fe_mul(&h3, &h3, &s1);
690 secp256k1_fe_add(&r->y, &h3);
691
693}
694
695
697 /* Operations: 7 mul, 5 sqr, 21 add/cmov/half/mul_int/negate/normalizes_to_zero */
698 secp256k1_fe zz, u1, u2, s1, s2, t, tt, m, n, q, rr;
699 secp256k1_fe m_alt, rr_alt;
700 int degenerate;
704
705 /* In:
706 * Eric Brier and Marc Joye, Weierstrass Elliptic Curves and Side-Channel Attacks.
707 * In D. Naccache and P. Paillier, Eds., Public Key Cryptography, vol. 2274 of Lecture Notes in Computer Science, pages 335-345. Springer-Verlag, 2002.
708 * we find as solution for a unified addition/doubling formula:
709 * lambda = ((x1 + x2)^2 - x1 * x2 + a) / (y1 + y2), with a = 0 for secp256k1's curve equation.
710 * x3 = lambda^2 - (x1 + x2)
711 * 2*y3 = lambda * (x1 + x2 - 2 * x3) - (y1 + y2).
712 *
713 * Substituting x_i = Xi / Zi^2 and yi = Yi / Zi^3, for i=1,2,3, gives:
714 * U1 = X1*Z2^2, U2 = X2*Z1^2
715 * S1 = Y1*Z2^3, S2 = Y2*Z1^3
716 * Z = Z1*Z2
717 * T = U1+U2
718 * M = S1+S2
719 * Q = -T*M^2
720 * R = T^2-U1*U2
721 * X3 = R^2+Q
722 * Y3 = -(R*(2*X3+Q)+M^4)/2
723 * Z3 = M*Z
724 * (Note that the paper uses xi = Xi / Zi and yi = Yi / Zi instead.)
725 *
726 * This formula has the benefit of being the same for both addition
727 * of distinct points and doubling. However, it breaks down in the
728 * case that either point is infinity, or that y1 = -y2. We handle
729 * these cases in the following ways:
730 *
731 * - If b is infinity we simply bail by means of a VERIFY_CHECK.
732 *
733 * - If a is infinity, we detect this, and at the end of the
734 * computation replace the result (which will be meaningless,
735 * but we compute to be constant-time) with b.x : b.y : 1.
736 *
737 * - If a = -b, we have y1 = -y2, which is a degenerate case.
738 * But here the answer is infinity, so we simply set the
739 * infinity flag of the result, overriding the computed values
740 * without even needing to cmov.
741 *
742 * - If y1 = -y2 but x1 != x2, which does occur thanks to certain
743 * properties of our curve (specifically, 1 has nontrivial cube
744 * roots in our field, and the curve equation has no x coefficient)
745 * then the answer is not infinity but also not given by the above
746 * equation. In this case, we cmov in place an alternate expression
747 * for lambda. Specifically (y1 - y2)/(x1 - x2). Where both these
748 * expressions for lambda are defined, they are equal, and can be
749 * obtained from each other by multiplication by (y1 + y2)/(y1 + y2)
750 * then substitution of x^3 + 7 for y^2 (using the curve equation).
751 * For all pairs of nonzero points (a, b) at least one is defined,
752 * so this covers everything.
753 */
754
755 secp256k1_fe_sqr(&zz, &a->z); /* z = Z1^2 */
756 u1 = a->x; /* u1 = U1 = X1*Z2^2 (GEJ_X_M) */
757 secp256k1_fe_mul(&u2, &b->x, &zz); /* u2 = U2 = X2*Z1^2 (1) */
758 s1 = a->y; /* s1 = S1 = Y1*Z2^3 (GEJ_Y_M) */
759 secp256k1_fe_mul(&s2, &b->y, &zz); /* s2 = Y2*Z1^2 (1) */
760 secp256k1_fe_mul(&s2, &s2, &a->z); /* s2 = S2 = Y2*Z1^3 (1) */
761 t = u1; secp256k1_fe_add(&t, &u2); /* t = T = U1+U2 (GEJ_X_M+1) */
762 m = s1; secp256k1_fe_add(&m, &s2); /* m = M = S1+S2 (GEJ_Y_M+1) */
763 secp256k1_fe_sqr(&rr, &t); /* rr = T^2 (1) */
764 secp256k1_fe_negate(&m_alt, &u2, 1); /* Malt = -X2*Z1^2 (2) */
765 secp256k1_fe_mul(&tt, &u1, &m_alt); /* tt = -U1*U2 (1) */
766 secp256k1_fe_add(&rr, &tt); /* rr = R = T^2-U1*U2 (2) */
767 /* If lambda = R/M = R/0 we have a problem (except in the "trivial"
768 * case that Z = z1z2 = 0, and this is special-cased later on). */
769 degenerate = secp256k1_fe_normalizes_to_zero(&m);
770 /* This only occurs when y1 == -y2 and x1^3 == x2^3, but x1 != x2.
771 * This means either x1 == beta*x2 or beta*x1 == x2, where beta is
772 * a nontrivial cube root of one. In either case, an alternate
773 * non-indeterminate expression for lambda is (y1 - y2)/(x1 - x2),
774 * so we set R/M equal to this. */
775 rr_alt = s1;
776 secp256k1_fe_mul_int(&rr_alt, 2); /* rr_alt = Y1*Z2^3 - Y2*Z1^3 (GEJ_Y_M*2) */
777 secp256k1_fe_add(&m_alt, &u1); /* Malt = X1*Z2^2 - X2*Z1^2 (GEJ_X_M+2) */
778
779 secp256k1_fe_cmov(&rr_alt, &rr, !degenerate); /* rr_alt (GEJ_Y_M*2) */
780 secp256k1_fe_cmov(&m_alt, &m, !degenerate); /* m_alt (GEJ_X_M+2) */
781 /* Now Ralt / Malt = lambda and is guaranteed not to be Ralt / 0.
782 * From here on out Ralt and Malt represent the numerator
783 * and denominator of lambda; R and M represent the explicit
784 * expressions x1^2 + x2^2 + x1x2 and y1 + y2. */
785 secp256k1_fe_sqr(&n, &m_alt); /* n = Malt^2 (1) */
786 secp256k1_fe_negate(&q, &t,
787 SECP256K1_GEJ_X_MAGNITUDE_MAX + 1); /* q = -T (GEJ_X_M+2) */
788 secp256k1_fe_mul(&q, &q, &n); /* q = Q = -T*Malt^2 (1) */
789 /* These two lines use the observation that either M == Malt or M == 0,
790 * so M^3 * Malt is either Malt^4 (which is computed by squaring), or
791 * zero (which is "computed" by cmov). So the cost is one squaring
792 * versus two multiplications. */
793 secp256k1_fe_sqr(&n, &n); /* n = Malt^4 (1) */
794 secp256k1_fe_cmov(&n, &m, degenerate); /* n = M^3 * Malt (GEJ_Y_M+1) */
795 secp256k1_fe_sqr(&t, &rr_alt); /* t = Ralt^2 (1) */
796 secp256k1_fe_mul(&r->z, &a->z, &m_alt); /* r->z = Z3 = Malt*Z (1) */
797 secp256k1_fe_add(&t, &q); /* t = Ralt^2 + Q (2) */
798 r->x = t; /* r->x = X3 = Ralt^2 + Q (2) */
799 secp256k1_fe_mul_int(&t, 2); /* t = 2*X3 (4) */
800 secp256k1_fe_add(&t, &q); /* t = 2*X3 + Q (5) */
801 secp256k1_fe_mul(&t, &t, &rr_alt); /* t = Ralt*(2*X3 + Q) (1) */
802 secp256k1_fe_add(&t, &n); /* t = Ralt*(2*X3 + Q) + M^3*Malt (GEJ_Y_M+2) */
803 secp256k1_fe_negate(&r->y, &t,
804 SECP256K1_GEJ_Y_MAGNITUDE_MAX + 2); /* r->y = -(Ralt*(2*X3 + Q) + M^3*Malt) (GEJ_Y_M+3) */
805 secp256k1_fe_half(&r->y); /* r->y = Y3 = -(Ralt*(2*X3 + Q) + M^3*Malt)/2 ((GEJ_Y_M+3)/2 + 1) */
806
807 /* In case a->infinity == 1, replace r with (b->x, b->y, 1). */
808 secp256k1_fe_cmov(&r->x, &b->x, a->infinity);
809 secp256k1_fe_cmov(&r->y, &b->y, a->infinity);
811
812 /* Set r->infinity if r->z is 0.
813 *
814 * If a->infinity is set, then r->infinity = (r->z == 0) = (1 == 0) = false,
815 * which is correct because the function assumes that b is not infinity.
816 *
817 * Now assume !a->infinity. This implies Z = Z1 != 0.
818 *
819 * Case y1 = -y2:
820 * In this case we could have a = -b, namely if x1 = x2.
821 * We have degenerate = true, r->z = (x1 - x2) * Z.
822 * Then r->infinity = ((x1 - x2)Z == 0) = (x1 == x2) = (a == -b).
823 *
824 * Case y1 != -y2:
825 * In this case, we can't have a = -b.
826 * We have degenerate = false, r->z = (y1 + y2) * Z.
827 * Then r->infinity = ((y1 + y2)Z == 0) = (y1 == -y2) = false. */
829
831}
832
834 /* Operations: 4 mul, 1 sqr */
835 secp256k1_fe zz;
839
840 secp256k1_fe_sqr(&zz, s);
841 secp256k1_fe_mul(&r->x, &r->x, &zz); /* r->x *= s^2 */
842 secp256k1_fe_mul(&r->y, &r->y, &zz);
843 secp256k1_fe_mul(&r->y, &r->y, s); /* r->y *= s^3 */
844 secp256k1_fe_mul(&r->z, &r->z, s); /* r->z *= s */
845
847}
848
850 secp256k1_fe x, y;
853
854 x = a->x;
856 y = a->y;
858 secp256k1_fe_to_storage(&r->x, &x);
859 secp256k1_fe_to_storage(&r->y, &y);
860}
861
863 secp256k1_fe_from_storage(&r->x, &a->x);
864 secp256k1_fe_from_storage(&r->y, &a->y);
865 r->infinity = 0;
866
868}
869
873
874 secp256k1_fe_cmov(&r->x, &a->x, flag);
875 secp256k1_fe_cmov(&r->y, &a->y, flag);
876 secp256k1_fe_cmov(&r->z, &a->z, flag);
877 r->infinity ^= (r->infinity ^ a->infinity) & flag;
878
880}
881
883 secp256k1_fe_storage_cmov(&r->x, &a->x, flag);
884 secp256k1_fe_storage_cmov(&r->y, &a->y, flag);
885}
886
889
890 *r = *a;
892
894}
895
897 secp256k1_fe yz;
898
899 if (a->infinity) {
900 return 0;
901 }
902
903 /* We rely on the fact that the Jacobi symbol of 1 / a->z^3 is the same as
904 * that of a->z. Thus a->y / a->z^3 is a quadratic residue iff a->y * a->z
905 is */
906 secp256k1_fe_mul(&yz, &a->y, &a->z);
907 return secp256k1_fe_is_quad_var(&yz);
908}
909
911#ifdef EXHAUSTIVE_TEST_ORDER
913 int i;
915
916 /* A very simple EC multiplication ladder that avoids a dependency on ecmult. */
918 for (i = 0; i < 32; ++i) {
920 if ((((uint32_t)EXHAUSTIVE_TEST_ORDER) >> (31 - i)) & 1) {
921 secp256k1_gej_add_ge_var(&out, &out, ge, NULL);
922 }
923 }
925#else
927
928 (void)ge;
929 /* The real secp256k1 group has cofactor 1, so the subgroup is the entire curve. */
930 return 1;
931#endif
932}
933
935 secp256k1_fe c;
936 secp256k1_fe_sqr(&c, x);
937 secp256k1_fe_mul(&c, &c, x);
940}
941
943 /* We want to determine whether (xn/xd) is on the curve.
944 *
945 * (xn/xd)^3 + 7 is square <=> xd*xn^3 + 7*xd^4 is square (multiplying by xd^4, a square).
946 */
947 secp256k1_fe r, t;
949
950 secp256k1_fe_mul(&r, xd, xn); /* r = xd*xn */
951 secp256k1_fe_sqr(&t, xn); /* t = xn^2 */
952 secp256k1_fe_mul(&r, &r, &t); /* r = xd*xn^3 */
953 secp256k1_fe_sqr(&t, xd); /* t = xd^2 */
954 secp256k1_fe_sqr(&t, &t); /* t = xd^4 */
956 secp256k1_fe_mul_int(&t, SECP256K1_B); /* t = 7*xd^4 */
957 secp256k1_fe_add(&r, &t); /* r = xd*xn^3 + 7*xd^4 */
959}
960
961#endif /* SECP256K1_GROUP_IMPL_H */
#define secp256k1_fe_cmov
Definition: field.h:96
static int secp256k1_fe_is_quad_var(const secp256k1_fe *a)
Checks whether a field element is a quadratic residue.
#define secp256k1_fe_negate(r, a, m)
Negate a field element.
Definition: field.h:216
#define secp256k1_fe_mul_int(r, a)
Multiply a field element with a small integer.
Definition: field.h:238
#define secp256k1_fe_normalizes_to_zero_var
Definition: field.h:82
#define secp256k1_fe_normalize_weak
Definition: field.h:79
static const secp256k1_fe secp256k1_const_beta
Definition: field.h:69
#define secp256k1_fe_is_odd
Definition: field.h:86
#define SECP256K1_FE_VERIFY_MAGNITUDE(a, m)
Definition: field.h:356
#define secp256k1_fe_mul
Definition: field.h:94
static const secp256k1_fe secp256k1_fe_one
Definition: field.h:68
static int secp256k1_fe_sqrt(secp256k1_fe *SECP256K1_RESTRICT r, const secp256k1_fe *SECP256K1_RESTRICT a)
Compute a square root of a field element.
#define secp256k1_fe_add
Definition: field.h:93
#define secp256k1_fe_clear
Definition: field.h:84
#define secp256k1_fe_normalize_var
Definition: field.h:80
#define secp256k1_fe_half
Definition: field.h:102
#define secp256k1_fe_to_storage
Definition: field.h:97
#define secp256k1_fe_inv_var
Definition: field.h:100
#define SECP256K1_FE_VERIFY(a)
Definition: field.h:352
#define secp256k1_fe_is_square_var
Definition: field.h:104
#define secp256k1_fe_from_storage
Definition: field.h:98
#define secp256k1_fe_normalizes_to_zero
Definition: field.h:81
#define secp256k1_fe_inv
Definition: field.h:99
#define secp256k1_fe_sqr
Definition: field.h:95
#define secp256k1_fe_normalize
Definition: field.h:78
static int secp256k1_fe_equal(const secp256k1_fe *a, const secp256k1_fe *b)
Determine whether two field elements are equal.
static void secp256k1_fe_storage_cmov(secp256k1_fe_storage *r, const secp256k1_fe_storage *a, int flag)
If flag is true, set *r equal to *a; otherwise leave it.
#define secp256k1_fe_add_int
Definition: field.h:103
#define secp256k1_fe_set_int
Definition: field.h:83
#define SECP256K1_GE_X_MAGNITUDE_MAX
Maximum allowed magnitudes for group element coordinates in affine (x, y) and jacobian (x,...
Definition: group.h:49
#define SECP256K1_GEJ_VERIFY(a)
Definition: group.h:203
#define SECP256K1_GEJ_Y_MAGNITUDE_MAX
Definition: group.h:52
#define SECP256K1_GE_Y_MAGNITUDE_MAX
Definition: group.h:50
#define SECP256K1_GEJ_Z_MAGNITUDE_MAX
Definition: group.h:53
#define SECP256K1_GE_VERIFY(a)
Definition: group.h:199
#define SECP256K1_GEJ_X_MAGNITUDE_MAX
Definition: group.h:51
static int secp256k1_gej_eq_var(const secp256k1_gej *a, const secp256k1_gej *b)
Definition: group_impl.h:350
static void secp256k1_gej_double_var(secp256k1_gej *r, const secp256k1_gej *a, secp256k1_fe *rzr)
Definition: group_impl.h:467
static void secp256k1_gej_add_zinv_var(secp256k1_gej *r, const secp256k1_gej *a, const secp256k1_ge *b, const secp256k1_fe *bzinv)
Definition: group_impl.h:625
#define SECP256K1_G_ORDER_13
Definition: group_impl.h:21
static void secp256k1_gej_clear(secp256k1_gej *r)
Definition: group_impl.h:299
static void secp256k1_ge_mul_lambda(secp256k1_ge *r, const secp256k1_ge *a)
Definition: group_impl.h:887
static void secp256k1_gej_set_infinity(secp256k1_gej *r)
Definition: group_impl.h:282
static int secp256k1_gej_is_infinity(const secp256k1_gej *a)
Definition: group_impl.h:412
static void secp256k1_ge_clear(secp256k1_ge *r)
Definition: group_impl.h:308
static void secp256k1_ge_set_xy(secp256k1_ge *r, const secp256k1_fe *x, const secp256k1_fe *y)
Definition: group_impl.h:130
static void secp256k1_gej_verify(const secp256k1_gej *a)
Definition: group_impl.h:85
static int secp256k1_ge_set_xo_var(secp256k1_ge *r, const secp256k1_fe *x, int odd)
Definition: group_impl.h:328
static void secp256k1_ge_verify(const secp256k1_ge *a)
Definition: group_impl.h:76
static int secp256k1_ge_eq_var(const secp256k1_ge *a, const secp256k1_ge *b)
Definition: group_impl.h:370
static int secp256k1_ge_x_on_curve_var(const secp256k1_fe *x)
Definition: group_impl.h:934
static void secp256k1_gej_add_ge_var(secp256k1_gej *r, const secp256k1_gej *a, const secp256k1_ge *b, secp256k1_fe *rzr)
Definition: group_impl.h:562
static SECP256K1_INLINE void secp256k1_gej_cmov(secp256k1_gej *r, const secp256k1_gej *a, int flag)
Definition: group_impl.h:870
static void secp256k1_gej_add_ge(secp256k1_gej *r, const secp256k1_gej *a, const secp256k1_ge *b)
Definition: group_impl.h:696
#define SECP256K1_G
Generator for secp256k1, value 'g' defined in "Standards for Efficient Cryptography" (SEC2) 2....
Definition: group_impl.h:36
static void secp256k1_ge_set_gej_zinv(secp256k1_ge *r, const secp256k1_gej *a, const secp256k1_fe *zi)
Definition: group_impl.h:97
#define SECP256K1_B
Definition: group_impl.h:71
static int secp256k1_gej_eq_ge_var(const secp256k1_gej *a, const secp256k1_ge *b)
Definition: group_impl.h:360
static int secp256k1_ge_is_valid_var(const secp256k1_ge *a)
Definition: group_impl.h:418
static void secp256k1_ge_from_storage(secp256k1_ge *r, const secp256k1_ge_storage *a)
Definition: group_impl.h:862
static void secp256k1_gej_add_var(secp256k1_gej *r, const secp256k1_gej *a, const secp256k1_gej *b, secp256k1_fe *rzr)
Definition: group_impl.h:498
static int secp256k1_ge_x_frac_on_curve_var(const secp256k1_fe *xn, const secp256k1_fe *xd)
Definition: group_impl.h:942
static void secp256k1_gej_rescale(secp256k1_gej *r, const secp256k1_fe *s)
Definition: group_impl.h:833
static int secp256k1_ge_set_xquad(secp256k1_ge *r, const secp256k1_fe *x)
Definition: group_impl.h:316
static void secp256k1_ge_set_ge_zinv(secp256k1_ge *r, const secp256k1_ge *a, const secp256k1_fe *zi)
Definition: group_impl.h:114
static int secp256k1_gej_eq_x_var(const secp256k1_fe *x, const secp256k1_gej *a)
Definition: group_impl.h:389
#define SECP256K1_G_ORDER_7
Definition: group_impl.h:15
static void secp256k1_ge_set_gej(secp256k1_ge *r, secp256k1_gej *a)
Definition: group_impl.h:157
static int secp256k1_ge_is_in_correct_subgroup(const secp256k1_ge *ge)
Definition: group_impl.h:910
static void secp256k1_ge_table_set_globalz(size_t len, secp256k1_ge *a, const secp256k1_fe *zr)
Definition: group_impl.h:249
static void secp256k1_ge_neg(secp256k1_ge *r, const secp256k1_ge *a)
Definition: group_impl.h:147
static const secp256k1_ge secp256k1_ge_const_g
Definition: group_impl.h:70
static int secp256k1_ge_is_infinity(const secp256k1_ge *a)
Definition: group_impl.h:141
static void secp256k1_ge_set_infinity(secp256k1_ge *r)
Definition: group_impl.h:291
static void secp256k1_ge_set_all_gej_var(secp256k1_ge *r, const secp256k1_gej *a, size_t len)
Definition: group_impl.h:196
static void secp256k1_gej_set_ge(secp256k1_gej *r, const secp256k1_ge *a)
Definition: group_impl.h:339
static void secp256k1_ge_to_storage(secp256k1_ge_storage *r, const secp256k1_ge *a)
Definition: group_impl.h:849
static SECP256K1_INLINE void secp256k1_ge_storage_cmov(secp256k1_ge_storage *r, const secp256k1_ge_storage *a, int flag)
Definition: group_impl.h:882
#define SECP256K1_G_ORDER_199
Definition: group_impl.h:27
static void secp256k1_ge_set_gej_var(secp256k1_ge *r, secp256k1_gej *a)
Definition: group_impl.h:175
static int secp256k1_gej_has_quad_y_var(const secp256k1_gej *a)
Definition: group_impl.h:896
static void secp256k1_gej_neg(secp256k1_gej *r, const secp256k1_gej *a)
Definition: group_impl.h:399
static SECP256K1_INLINE void secp256k1_gej_double(secp256k1_gej *r, const secp256k1_gej *a)
Definition: group_impl.h:432
#define SECP256K1_INLINE
Definition: util.h:48
#define VERIFY_CHECK(cond)
Definition: util.h:153
This field implementation represents the value as 10 uint32_t limbs in base 2^26.
Definition: field_10x26.h:14
secp256k1_fe_storage x
Definition: group.h:39
secp256k1_fe_storage y
Definition: group.h:40
A group element in affine coordinates on the secp256k1 curve, or occasionally on an isomorphic curve ...
Definition: group.h:16
int infinity
Definition: group.h:19
secp256k1_fe x
Definition: group.h:17
secp256k1_fe y
Definition: group.h:18
A group element of the secp256k1 curve, in jacobian coordinates.
Definition: group.h:28
secp256k1_fe y
Definition: group.h:30
secp256k1_fe x
Definition: group.h:29
int infinity
Definition: group.h:32
secp256k1_fe z
Definition: group.h:31
#define EXHAUSTIVE_TEST_ORDER