Bitcoin ABC 0.33.6
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) {
77#ifdef VERIFY
82 VERIFY_CHECK(a->infinity == 0 || a->infinity == 1);
83#endif
84 (void)a;
85}
86
87static void secp256k1_gej_verify(const secp256k1_gej *a) {
88#ifdef VERIFY
95 VERIFY_CHECK(a->infinity == 0 || a->infinity == 1);
96#endif
97 (void)a;
98}
99
100/* Set r to the affine coordinates of Jacobian point (a.x, a.y, 1/zi). */
102 secp256k1_fe zi2;
103 secp256k1_fe zi3;
107
108 secp256k1_fe_sqr(&zi2, zi);
109 secp256k1_fe_mul(&zi3, &zi2, zi);
110 secp256k1_fe_mul(&r->x, &a->x, &zi2);
111 secp256k1_fe_mul(&r->y, &a->y, &zi3);
112 r->infinity = a->infinity;
113
115}
116
117/* Set r to the affine coordinates of Jacobian point (a.x, a.y, 1/zi). */
119 secp256k1_fe zi2;
120 secp256k1_fe zi3;
124
125 secp256k1_fe_sqr(&zi2, zi);
126 secp256k1_fe_mul(&zi3, &zi2, zi);
127 secp256k1_fe_mul(&r->x, &a->x, &zi2);
128 secp256k1_fe_mul(&r->y, &a->y, &zi3);
129 r->infinity = a->infinity;
130
132}
133
134static void secp256k1_ge_set_xy(secp256k1_ge *r, const secp256k1_fe *x, const secp256k1_fe *y) {
137
138 r->infinity = 0;
139 r->x = *x;
140 r->y = *y;
141
143}
144
147
148 return a->infinity;
149}
150
151static void secp256k1_ge_neg(secp256k1_ge *r, const secp256k1_ge *a) {
153
154 *r = *a;
156 secp256k1_fe_negate(&r->y, &r->y, 1);
157
159}
160
162 secp256k1_fe z2, z3;
164
165 r->infinity = a->infinity;
166 secp256k1_fe_inv(&a->z, &a->z);
167 secp256k1_fe_sqr(&z2, &a->z);
168 secp256k1_fe_mul(&z3, &a->z, &z2);
169 secp256k1_fe_mul(&a->x, &a->x, &z2);
170 secp256k1_fe_mul(&a->y, &a->y, &z3);
171 secp256k1_fe_set_int(&a->z, 1);
172 r->x = a->x;
173 r->y = a->y;
174
177}
178
180 secp256k1_fe z2, z3;
182
185 return;
186 }
187 r->infinity = 0;
188 secp256k1_fe_inv_var(&a->z, &a->z);
189 secp256k1_fe_sqr(&z2, &a->z);
190 secp256k1_fe_mul(&z3, &a->z, &z2);
191 secp256k1_fe_mul(&a->x, &a->x, &z2);
192 secp256k1_fe_mul(&a->y, &a->y, &z3);
193 secp256k1_fe_set_int(&a->z, 1);
194 secp256k1_ge_set_xy(r, &a->x, &a->y);
195
198}
199
200static void secp256k1_ge_set_all_gej_var(secp256k1_ge *r, const secp256k1_gej *a, size_t len) {
201 secp256k1_fe u;
202 size_t i;
203 size_t last_i = SIZE_MAX;
204#ifdef VERIFY
205 for (i = 0; i < len; i++) {
207 }
208#endif
209
210 for (i = 0; i < len; i++) {
211 if (a[i].infinity) {
213 } else {
214 /* Use destination's x coordinates as scratch space */
215 if (last_i == SIZE_MAX) {
216 r[i].x = a[i].z;
217 } else {
218 secp256k1_fe_mul(&r[i].x, &r[last_i].x, &a[i].z);
219 }
220 last_i = i;
221 }
222 }
223 if (last_i == SIZE_MAX) {
224 return;
225 }
226 secp256k1_fe_inv_var(&u, &r[last_i].x);
227
228 i = last_i;
229 while (i > 0) {
230 i--;
231 if (!a[i].infinity) {
232 secp256k1_fe_mul(&r[last_i].x, &r[i].x, &u);
233 secp256k1_fe_mul(&u, &u, &a[last_i].z);
234 last_i = i;
235 }
236 }
237 VERIFY_CHECK(!a[last_i].infinity);
238 r[last_i].x = u;
239
240 for (i = 0; i < len; i++) {
241 if (!a[i].infinity) {
242 secp256k1_ge_set_gej_zinv(&r[i], &a[i], &r[i].x);
243 }
244 }
245
246#ifdef VERIFY
247 for (i = 0; i < len; i++) {
248 secp256k1_ge_verify(&r[i]);
249 }
250#endif
251}
252
253static void secp256k1_ge_table_set_globalz(size_t len, secp256k1_ge *a, const secp256k1_fe *zr) {
254 size_t i;
255 secp256k1_fe zs;
256#ifdef VERIFY
257 for (i = 0; i < len; i++) {
258 secp256k1_ge_verify(&a[i]);
259 secp256k1_fe_verify(&zr[i]);
260 }
261#endif
262
263 if (len > 0) {
264 i = len - 1;
265 /* Ensure all y values are in weak normal form for fast negation of points */
267 zs = zr[i];
268
269 /* Work our way backwards, using the z-ratios to scale the x/y values. */
270 while (i > 0) {
271 if (i != len - 1) {
272 secp256k1_fe_mul(&zs, &zs, &zr[i]);
273 }
274 i--;
275 secp256k1_ge_set_ge_zinv(&a[i], &a[i], &zs);
276 }
277 }
278
279#ifdef VERIFY
280 for (i = 0; i < len; i++) {
281 secp256k1_ge_verify(&a[i]);
282 }
283#endif
284}
285
287 r->infinity = 1;
291
293}
294
296 r->infinity = 1;
299
301}
302
304 r->infinity = 0;
308
310}
311
313 r->infinity = 0;
316
318}
319
321 secp256k1_fe x2, x3;
323
324 r->x = *x;
325 secp256k1_fe_sqr(&x2, x);
326 secp256k1_fe_mul(&x3, x, &x2);
327 r->infinity = 0;
329 return secp256k1_fe_sqrt(&r->y, &x3);
330}
331
332static int secp256k1_ge_set_xo_var(secp256k1_ge *r, const secp256k1_fe *x, int odd) {
333 int ret = secp256k1_ge_set_xquad(r, x);
335 if (secp256k1_fe_is_odd(&r->y) != odd) {
336 secp256k1_fe_negate(&r->y, &r->y, 1);
337 }
338
340 return ret;
341}
342
345
346 r->infinity = a->infinity;
347 r->x = a->x;
348 r->y = a->y;
349 secp256k1_fe_set_int(&r->z, 1);
350
352}
353
354static int secp256k1_gej_eq_var(const secp256k1_gej *a, const secp256k1_gej *b) {
355 secp256k1_gej tmp;
358
359 secp256k1_gej_neg(&tmp, a);
360 secp256k1_gej_add_var(&tmp, &tmp, b, NULL);
361 return secp256k1_gej_is_infinity(&tmp);
362}
363
364static int secp256k1_gej_eq_x_var(const secp256k1_fe *x, const secp256k1_gej *a) {
365 secp256k1_fe r;
368#ifdef VERIFY
370#endif
371
372 secp256k1_fe_sqr(&r, &a->z); secp256k1_fe_mul(&r, &r, x);
373 return secp256k1_fe_equal(&r, &a->x);
374}
375
378
379 r->infinity = a->infinity;
380 r->x = a->x;
381 r->y = a->y;
382 r->z = a->z;
384 secp256k1_fe_negate(&r->y, &r->y, 1);
385
387}
388
391
392 return a->infinity;
393}
394
396 secp256k1_fe y2, x3;
398
399 if (a->infinity) {
400 return 0;
401 }
402 /* y^2 = x^3 + 7 */
403 secp256k1_fe_sqr(&y2, &a->y);
404 secp256k1_fe_sqr(&x3, &a->x); secp256k1_fe_mul(&x3, &x3, &a->x);
406 return secp256k1_fe_equal(&y2, &x3);
407}
408
410 /* Operations: 3 mul, 4 sqr, 8 add/half/mul_int/negate */
411 secp256k1_fe l, s, t;
413
414 r->infinity = a->infinity;
415
416 /* Formula used:
417 * L = (3/2) * X1^2
418 * S = Y1^2
419 * T = -X1*S
420 * X3 = L^2 + 2*T
421 * Y3 = -(L*(X3 + T) + S^2)
422 * Z3 = Y1*Z1
423 */
424
425 secp256k1_fe_mul(&r->z, &a->z, &a->y); /* Z3 = Y1*Z1 (1) */
426 secp256k1_fe_sqr(&s, &a->y); /* S = Y1^2 (1) */
427 secp256k1_fe_sqr(&l, &a->x); /* L = X1^2 (1) */
428 secp256k1_fe_mul_int(&l, 3); /* L = 3*X1^2 (3) */
429 secp256k1_fe_half(&l); /* L = 3/2*X1^2 (2) */
430 secp256k1_fe_negate(&t, &s, 1); /* T = -S (2) */
431 secp256k1_fe_mul(&t, &t, &a->x); /* T = -X1*S (1) */
432 secp256k1_fe_sqr(&r->x, &l); /* X3 = L^2 (1) */
433 secp256k1_fe_add(&r->x, &t); /* X3 = L^2 + T (2) */
434 secp256k1_fe_add(&r->x, &t); /* X3 = L^2 + 2*T (3) */
435 secp256k1_fe_sqr(&s, &s); /* S' = S^2 (1) */
436 secp256k1_fe_add(&t, &r->x); /* T' = X3 + T (4) */
437 secp256k1_fe_mul(&r->y, &t, &l); /* Y3 = L*(X3 + T) (1) */
438 secp256k1_fe_add(&r->y, &s); /* Y3 = L*(X3 + T) + S^2 (2) */
439 secp256k1_fe_negate(&r->y, &r->y, 2); /* Y3 = -(L*(X3 + T) + S^2) (3) */
440
442}
443
446
457 if (a->infinity) {
459 if (rzr != NULL) {
460 secp256k1_fe_set_int(rzr, 1);
461 }
462 return;
463 }
464
465 if (rzr != NULL) {
466 *rzr = a->y;
468 }
469
471
473}
474
476 /* 12 mul, 4 sqr, 11 add/negate/normalizes_to_zero (ignoring special cases) */
477 secp256k1_fe z22, z12, u1, u2, s1, s2, h, i, h2, h3, t;
480
481 if (a->infinity) {
482 VERIFY_CHECK(rzr == NULL);
483 *r = *b;
484 return;
485 }
486 if (b->infinity) {
487 if (rzr != NULL) {
488 secp256k1_fe_set_int(rzr, 1);
489 }
490 *r = *a;
491 return;
492 }
493
494 secp256k1_fe_sqr(&z22, &b->z);
495 secp256k1_fe_sqr(&z12, &a->z);
496 secp256k1_fe_mul(&u1, &a->x, &z22);
497 secp256k1_fe_mul(&u2, &b->x, &z12);
498 secp256k1_fe_mul(&s1, &a->y, &z22); secp256k1_fe_mul(&s1, &s1, &b->z);
499 secp256k1_fe_mul(&s2, &b->y, &z12); secp256k1_fe_mul(&s2, &s2, &a->z);
500 secp256k1_fe_negate(&h, &u1, 1); secp256k1_fe_add(&h, &u2);
501 secp256k1_fe_negate(&i, &s2, 1); secp256k1_fe_add(&i, &s1);
504 secp256k1_gej_double_var(r, a, rzr);
505 } else {
506 if (rzr != NULL) {
507 secp256k1_fe_set_int(rzr, 0);
508 }
510 }
511 return;
512 }
513
514 r->infinity = 0;
515 secp256k1_fe_mul(&t, &h, &b->z);
516 if (rzr != NULL) {
517 *rzr = t;
518 }
519 secp256k1_fe_mul(&r->z, &a->z, &t);
520
521 secp256k1_fe_sqr(&h2, &h);
522 secp256k1_fe_negate(&h2, &h2, 1);
523 secp256k1_fe_mul(&h3, &h2, &h);
524 secp256k1_fe_mul(&t, &u1, &h2);
525
526 secp256k1_fe_sqr(&r->x, &i);
527 secp256k1_fe_add(&r->x, &h3);
528 secp256k1_fe_add(&r->x, &t);
529 secp256k1_fe_add(&r->x, &t);
530
531 secp256k1_fe_add(&t, &r->x);
532 secp256k1_fe_mul(&r->y, &t, &i);
533 secp256k1_fe_mul(&h3, &h3, &s1);
534 secp256k1_fe_add(&r->y, &h3);
535
537}
538
540 /* Operations: 8 mul, 3 sqr, 11 add/negate/normalizes_to_zero (ignoring special cases) */
541 secp256k1_fe z12, u1, u2, s1, s2, h, i, h2, h3, t;
544
545 if (a->infinity) {
546 VERIFY_CHECK(rzr == NULL);
548 return;
549 }
550 if (b->infinity) {
551 if (rzr != NULL) {
552 secp256k1_fe_set_int(rzr, 1);
553 }
554 *r = *a;
555 return;
556 }
557
558 secp256k1_fe_sqr(&z12, &a->z);
559 u1 = a->x;
560 secp256k1_fe_mul(&u2, &b->x, &z12);
561 s1 = a->y;
562 secp256k1_fe_mul(&s2, &b->y, &z12); secp256k1_fe_mul(&s2, &s2, &a->z);
564 secp256k1_fe_negate(&i, &s2, 1); secp256k1_fe_add(&i, &s1);
567 secp256k1_gej_double_var(r, a, rzr);
568 } else {
569 if (rzr != NULL) {
570 secp256k1_fe_set_int(rzr, 0);
571 }
573 }
574 return;
575 }
576
577 r->infinity = 0;
578 if (rzr != NULL) {
579 *rzr = h;
580 }
581 secp256k1_fe_mul(&r->z, &a->z, &h);
582
583 secp256k1_fe_sqr(&h2, &h);
584 secp256k1_fe_negate(&h2, &h2, 1);
585 secp256k1_fe_mul(&h3, &h2, &h);
586 secp256k1_fe_mul(&t, &u1, &h2);
587
588 secp256k1_fe_sqr(&r->x, &i);
589 secp256k1_fe_add(&r->x, &h3);
590 secp256k1_fe_add(&r->x, &t);
591 secp256k1_fe_add(&r->x, &t);
592
593 secp256k1_fe_add(&t, &r->x);
594 secp256k1_fe_mul(&r->y, &t, &i);
595 secp256k1_fe_mul(&h3, &h3, &s1);
596 secp256k1_fe_add(&r->y, &h3);
597
599 if (rzr != NULL) secp256k1_fe_verify(rzr);
600}
601
602static void secp256k1_gej_add_zinv_var(secp256k1_gej *r, const secp256k1_gej *a, const secp256k1_ge *b, const secp256k1_fe *bzinv) {
603 /* Operations: 9 mul, 3 sqr, 11 add/negate/normalizes_to_zero (ignoring special cases) */
604 secp256k1_fe az, z12, u1, u2, s1, s2, h, i, h2, h3, t;
607 secp256k1_fe_verify(bzinv);
608
609 if (a->infinity) {
610 secp256k1_fe bzinv2, bzinv3;
611 r->infinity = b->infinity;
612 secp256k1_fe_sqr(&bzinv2, bzinv);
613 secp256k1_fe_mul(&bzinv3, &bzinv2, bzinv);
614 secp256k1_fe_mul(&r->x, &b->x, &bzinv2);
615 secp256k1_fe_mul(&r->y, &b->y, &bzinv3);
616 secp256k1_fe_set_int(&r->z, 1);
618 return;
619 }
620 if (b->infinity) {
621 *r = *a;
622 return;
623 }
624
633 secp256k1_fe_mul(&az, &a->z, bzinv);
634
635 secp256k1_fe_sqr(&z12, &az);
636 u1 = a->x;
637 secp256k1_fe_mul(&u2, &b->x, &z12);
638 s1 = a->y;
639 secp256k1_fe_mul(&s2, &b->y, &z12); secp256k1_fe_mul(&s2, &s2, &az);
641 secp256k1_fe_negate(&i, &s2, 1); secp256k1_fe_add(&i, &s1);
644 secp256k1_gej_double_var(r, a, NULL);
645 } else {
647 }
648 return;
649 }
650
651 r->infinity = 0;
652 secp256k1_fe_mul(&r->z, &a->z, &h);
653
654 secp256k1_fe_sqr(&h2, &h);
655 secp256k1_fe_negate(&h2, &h2, 1);
656 secp256k1_fe_mul(&h3, &h2, &h);
657 secp256k1_fe_mul(&t, &u1, &h2);
658
659 secp256k1_fe_sqr(&r->x, &i);
660 secp256k1_fe_add(&r->x, &h3);
661 secp256k1_fe_add(&r->x, &t);
662 secp256k1_fe_add(&r->x, &t);
663
664 secp256k1_fe_add(&t, &r->x);
665 secp256k1_fe_mul(&r->y, &t, &i);
666 secp256k1_fe_mul(&h3, &h3, &s1);
667 secp256k1_fe_add(&r->y, &h3);
668
670}
671
672
674 /* Operations: 7 mul, 5 sqr, 21 add/cmov/half/mul_int/negate/normalizes_to_zero */
675 secp256k1_fe zz, u1, u2, s1, s2, t, tt, m, n, q, rr;
676 secp256k1_fe m_alt, rr_alt;
677 int degenerate;
681
682 /* In:
683 * Eric Brier and Marc Joye, Weierstrass Elliptic Curves and Side-Channel Attacks.
684 * In D. Naccache and P. Paillier, Eds., Public Key Cryptography, vol. 2274 of Lecture Notes in Computer Science, pages 335-345. Springer-Verlag, 2002.
685 * we find as solution for a unified addition/doubling formula:
686 * lambda = ((x1 + x2)^2 - x1 * x2 + a) / (y1 + y2), with a = 0 for secp256k1's curve equation.
687 * x3 = lambda^2 - (x1 + x2)
688 * 2*y3 = lambda * (x1 + x2 - 2 * x3) - (y1 + y2).
689 *
690 * Substituting x_i = Xi / Zi^2 and yi = Yi / Zi^3, for i=1,2,3, gives:
691 * U1 = X1*Z2^2, U2 = X2*Z1^2
692 * S1 = Y1*Z2^3, S2 = Y2*Z1^3
693 * Z = Z1*Z2
694 * T = U1+U2
695 * M = S1+S2
696 * Q = -T*M^2
697 * R = T^2-U1*U2
698 * X3 = R^2+Q
699 * Y3 = -(R*(2*X3+Q)+M^4)/2
700 * Z3 = M*Z
701 * (Note that the paper uses xi = Xi / Zi and yi = Yi / Zi instead.)
702 *
703 * This formula has the benefit of being the same for both addition
704 * of distinct points and doubling. However, it breaks down in the
705 * case that either point is infinity, or that y1 = -y2. We handle
706 * these cases in the following ways:
707 *
708 * - If b is infinity we simply bail by means of a VERIFY_CHECK.
709 *
710 * - If a is infinity, we detect this, and at the end of the
711 * computation replace the result (which will be meaningless,
712 * but we compute to be constant-time) with b.x : b.y : 1.
713 *
714 * - If a = -b, we have y1 = -y2, which is a degenerate case.
715 * But here the answer is infinity, so we simply set the
716 * infinity flag of the result, overriding the computed values
717 * without even needing to cmov.
718 *
719 * - If y1 = -y2 but x1 != x2, which does occur thanks to certain
720 * properties of our curve (specifically, 1 has nontrivial cube
721 * roots in our field, and the curve equation has no x coefficient)
722 * then the answer is not infinity but also not given by the above
723 * equation. In this case, we cmov in place an alternate expression
724 * for lambda. Specifically (y1 - y2)/(x1 - x2). Where both these
725 * expressions for lambda are defined, they are equal, and can be
726 * obtained from each other by multiplication by (y1 + y2)/(y1 + y2)
727 * then substitution of x^3 + 7 for y^2 (using the curve equation).
728 * For all pairs of nonzero points (a, b) at least one is defined,
729 * so this covers everything.
730 */
731
732 secp256k1_fe_sqr(&zz, &a->z); /* z = Z1^2 */
733 u1 = a->x; /* u1 = U1 = X1*Z2^2 (GEJ_X_M) */
734 secp256k1_fe_mul(&u2, &b->x, &zz); /* u2 = U2 = X2*Z1^2 (1) */
735 s1 = a->y; /* s1 = S1 = Y1*Z2^3 (GEJ_Y_M) */
736 secp256k1_fe_mul(&s2, &b->y, &zz); /* s2 = Y2*Z1^2 (1) */
737 secp256k1_fe_mul(&s2, &s2, &a->z); /* s2 = S2 = Y2*Z1^3 (1) */
738 t = u1; secp256k1_fe_add(&t, &u2); /* t = T = U1+U2 (GEJ_X_M+1) */
739 m = s1; secp256k1_fe_add(&m, &s2); /* m = M = S1+S2 (GEJ_Y_M+1) */
740 secp256k1_fe_sqr(&rr, &t); /* rr = T^2 (1) */
741 secp256k1_fe_negate(&m_alt, &u2, 1); /* Malt = -X2*Z1^2 (2) */
742 secp256k1_fe_mul(&tt, &u1, &m_alt); /* tt = -U1*U2 (1) */
743 secp256k1_fe_add(&rr, &tt); /* rr = R = T^2-U1*U2 (2) */
744 /* If lambda = R/M = R/0 we have a problem (except in the "trivial"
745 * case that Z = z1z2 = 0, and this is special-cased later on). */
746 degenerate = secp256k1_fe_normalizes_to_zero(&m);
747 /* This only occurs when y1 == -y2 and x1^3 == x2^3, but x1 != x2.
748 * This means either x1 == beta*x2 or beta*x1 == x2, where beta is
749 * a nontrivial cube root of one. In either case, an alternate
750 * non-indeterminate expression for lambda is (y1 - y2)/(x1 - x2),
751 * so we set R/M equal to this. */
752 rr_alt = s1;
753 secp256k1_fe_mul_int(&rr_alt, 2); /* rr_alt = Y1*Z2^3 - Y2*Z1^3 (GEJ_Y_M*2) */
754 secp256k1_fe_add(&m_alt, &u1); /* Malt = X1*Z2^2 - X2*Z1^2 (GEJ_X_M+2) */
755
756 secp256k1_fe_cmov(&rr_alt, &rr, !degenerate); /* rr_alt (GEJ_Y_M*2) */
757 secp256k1_fe_cmov(&m_alt, &m, !degenerate); /* m_alt (GEJ_X_M+2) */
758 /* Now Ralt / Malt = lambda and is guaranteed not to be Ralt / 0.
759 * From here on out Ralt and Malt represent the numerator
760 * and denominator of lambda; R and M represent the explicit
761 * expressions x1^2 + x2^2 + x1x2 and y1 + y2. */
762 secp256k1_fe_sqr(&n, &m_alt); /* n = Malt^2 (1) */
763 secp256k1_fe_negate(&q, &t,
764 SECP256K1_GEJ_X_MAGNITUDE_MAX + 1); /* q = -T (GEJ_X_M+2) */
765 secp256k1_fe_mul(&q, &q, &n); /* q = Q = -T*Malt^2 (1) */
766 /* These two lines use the observation that either M == Malt or M == 0,
767 * so M^3 * Malt is either Malt^4 (which is computed by squaring), or
768 * zero (which is "computed" by cmov). So the cost is one squaring
769 * versus two multiplications. */
770 secp256k1_fe_sqr(&n, &n); /* n = Malt^4 (1) */
771 secp256k1_fe_cmov(&n, &m, degenerate); /* n = M^3 * Malt (GEJ_Y_M+1) */
772 secp256k1_fe_sqr(&t, &rr_alt); /* t = Ralt^2 (1) */
773 secp256k1_fe_mul(&r->z, &a->z, &m_alt); /* r->z = Z3 = Malt*Z (1) */
774 secp256k1_fe_add(&t, &q); /* t = Ralt^2 + Q (2) */
775 r->x = t; /* r->x = X3 = Ralt^2 + Q (2) */
776 secp256k1_fe_mul_int(&t, 2); /* t = 2*X3 (4) */
777 secp256k1_fe_add(&t, &q); /* t = 2*X3 + Q (5) */
778 secp256k1_fe_mul(&t, &t, &rr_alt); /* t = Ralt*(2*X3 + Q) (1) */
779 secp256k1_fe_add(&t, &n); /* t = Ralt*(2*X3 + Q) + M^3*Malt (GEJ_Y_M+2) */
780 secp256k1_fe_negate(&r->y, &t,
781 SECP256K1_GEJ_Y_MAGNITUDE_MAX + 2); /* r->y = -(Ralt*(2*X3 + Q) + M^3*Malt) (GEJ_Y_M+3) */
782 secp256k1_fe_half(&r->y); /* r->y = Y3 = -(Ralt*(2*X3 + Q) + M^3*Malt)/2 ((GEJ_Y_M+3)/2 + 1) */
783
784 /* In case a->infinity == 1, replace r with (b->x, b->y, 1). */
785 secp256k1_fe_cmov(&r->x, &b->x, a->infinity);
786 secp256k1_fe_cmov(&r->y, &b->y, a->infinity);
788
789 /* Set r->infinity if r->z is 0.
790 *
791 * If a->infinity is set, then r->infinity = (r->z == 0) = (1 == 0) = false,
792 * which is correct because the function assumes that b is not infinity.
793 *
794 * Now assume !a->infinity. This implies Z = Z1 != 0.
795 *
796 * Case y1 = -y2:
797 * In this case we could have a = -b, namely if x1 = x2.
798 * We have degenerate = true, r->z = (x1 - x2) * Z.
799 * Then r->infinity = ((x1 - x2)Z == 0) = (x1 == x2) = (a == -b).
800 *
801 * Case y1 != -y2:
802 * In this case, we can't have a = -b.
803 * We have degenerate = false, r->z = (y1 + y2) * Z.
804 * Then r->infinity = ((y1 + y2)Z == 0) = (y1 == -y2) = false. */
806
808}
809
811 /* Operations: 4 mul, 1 sqr */
812 secp256k1_fe zz;
815#ifdef VERIFY
817#endif
818
819 secp256k1_fe_sqr(&zz, s);
820 secp256k1_fe_mul(&r->x, &r->x, &zz); /* r->x *= s^2 */
821 secp256k1_fe_mul(&r->y, &r->y, &zz);
822 secp256k1_fe_mul(&r->y, &r->y, s); /* r->y *= s^3 */
823 secp256k1_fe_mul(&r->z, &r->z, s); /* r->z *= s */
824
826}
827
829 secp256k1_fe x, y;
832
833 x = a->x;
835 y = a->y;
837 secp256k1_fe_to_storage(&r->x, &x);
838 secp256k1_fe_to_storage(&r->y, &y);
839}
840
842 secp256k1_fe_from_storage(&r->x, &a->x);
843 secp256k1_fe_from_storage(&r->y, &a->y);
844 r->infinity = 0;
845
847}
848
852
853 secp256k1_fe_cmov(&r->x, &a->x, flag);
854 secp256k1_fe_cmov(&r->y, &a->y, flag);
855 secp256k1_fe_cmov(&r->z, &a->z, flag);
856 r->infinity ^= (r->infinity ^ a->infinity) & flag;
857
859}
860
862 secp256k1_fe_storage_cmov(&r->x, &a->x, flag);
863 secp256k1_fe_storage_cmov(&r->y, &a->y, flag);
864}
865
868
869 *r = *a;
871
873}
874
876 secp256k1_fe yz;
877
878 if (a->infinity) {
879 return 0;
880 }
881
882 /* We rely on the fact that the Jacobi symbol of 1 / a->z^3 is the same as
883 * that of a->z. Thus a->y / a->z^3 is a quadratic residue iff a->y * a->z
884 is */
885 secp256k1_fe_mul(&yz, &a->y, &a->z);
886 return secp256k1_fe_is_quad_var(&yz);
887}
888
890#ifdef EXHAUSTIVE_TEST_ORDER
892 int i;
894
895 /* A very simple EC multiplication ladder that avoids a dependency on ecmult. */
897 for (i = 0; i < 32; ++i) {
899 if ((((uint32_t)EXHAUSTIVE_TEST_ORDER) >> (31 - i)) & 1) {
900 secp256k1_gej_add_ge_var(&out, &out, ge, NULL);
901 }
902 }
904#else
906
907 (void)ge;
908 /* The real secp256k1 group has cofactor 1, so the subgroup is the entire curve. */
909 return 1;
910#endif
911}
912
914 secp256k1_fe c;
915 secp256k1_fe_sqr(&c, x);
916 secp256k1_fe_mul(&c, &c, x);
919}
920
922 /* We want to determine whether (xn/xd) is on the curve.
923 *
924 * (xn/xd)^3 + 7 is square <=> xd*xn^3 + 7*xd^4 is square (multiplying by xd^4, a square).
925 */
926 secp256k1_fe r, t;
927#ifdef VERIFY
929#endif
930 secp256k1_fe_mul(&r, xd, xn); /* r = xd*xn */
931 secp256k1_fe_sqr(&t, xn); /* t = xn^2 */
932 secp256k1_fe_mul(&r, &r, &t); /* r = xd*xn^3 */
933 secp256k1_fe_sqr(&t, xd); /* t = xd^2 */
934 secp256k1_fe_sqr(&t, &t); /* t = xd^4 */
936 secp256k1_fe_mul_int(&t, SECP256K1_B); /* t = 7*xd^4 */
937 secp256k1_fe_add(&r, &t); /* r = xd*xn^3 + 7*xd^4 */
939}
940
941#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:215
#define secp256k1_fe_mul_int(r, a)
Multiply a field element with a small integer.
Definition: field.h:237
#define secp256k1_fe_normalizes_to_zero_var
Definition: field.h:82
static void secp256k1_fe_verify_magnitude(const secp256k1_fe *a, int m)
Check that magnitude of a is at most m (no-op unless VERIFY is enabled).
#define secp256k1_fe_normalize_weak
Definition: field.h:79
static const secp256k1_fe secp256k1_const_beta
Definition: field.h:69
static void secp256k1_fe_verify(const secp256k1_fe *a)
Check invariants on a field element (no-op unless VERIFY is enabled).
#define secp256k1_fe_is_odd
Definition: field.h:86
#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_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_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_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:354
static void secp256k1_gej_double_var(secp256k1_gej *r, const secp256k1_gej *a, secp256k1_fe *rzr)
Definition: group_impl.h:444
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:602
#define SECP256K1_G_ORDER_13
Definition: group_impl.h:21
static void secp256k1_gej_clear(secp256k1_gej *r)
Definition: group_impl.h:303
static void secp256k1_ge_mul_lambda(secp256k1_ge *r, const secp256k1_ge *a)
Definition: group_impl.h:866
static void secp256k1_gej_set_infinity(secp256k1_gej *r)
Definition: group_impl.h:286
static int secp256k1_gej_is_infinity(const secp256k1_gej *a)
Definition: group_impl.h:389
static void secp256k1_ge_clear(secp256k1_ge *r)
Definition: group_impl.h:312
static void secp256k1_ge_set_xy(secp256k1_ge *r, const secp256k1_fe *x, const secp256k1_fe *y)
Definition: group_impl.h:134
static void secp256k1_gej_verify(const secp256k1_gej *a)
Definition: group_impl.h:87
static int secp256k1_ge_set_xo_var(secp256k1_ge *r, const secp256k1_fe *x, int odd)
Definition: group_impl.h:332
static void secp256k1_ge_verify(const secp256k1_ge *a)
Definition: group_impl.h:76
static int secp256k1_ge_x_on_curve_var(const secp256k1_fe *x)
Definition: group_impl.h:913
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:539
static SECP256K1_INLINE void secp256k1_gej_cmov(secp256k1_gej *r, const secp256k1_gej *a, int flag)
Definition: group_impl.h:849
static void secp256k1_gej_add_ge(secp256k1_gej *r, const secp256k1_gej *a, const secp256k1_ge *b)
Definition: group_impl.h:673
#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:101
#define SECP256K1_B
Definition: group_impl.h:71
static int secp256k1_ge_is_valid_var(const secp256k1_ge *a)
Definition: group_impl.h:395
static void secp256k1_ge_from_storage(secp256k1_ge *r, const secp256k1_ge_storage *a)
Definition: group_impl.h:841
static void secp256k1_gej_add_var(secp256k1_gej *r, const secp256k1_gej *a, const secp256k1_gej *b, secp256k1_fe *rzr)
Definition: group_impl.h:475
static int secp256k1_ge_x_frac_on_curve_var(const secp256k1_fe *xn, const secp256k1_fe *xd)
Definition: group_impl.h:921
static void secp256k1_gej_rescale(secp256k1_gej *r, const secp256k1_fe *s)
Definition: group_impl.h:810
static int secp256k1_ge_set_xquad(secp256k1_ge *r, const secp256k1_fe *x)
Definition: group_impl.h:320
static void secp256k1_ge_set_ge_zinv(secp256k1_ge *r, const secp256k1_ge *a, const secp256k1_fe *zi)
Definition: group_impl.h:118
static int secp256k1_gej_eq_x_var(const secp256k1_fe *x, const secp256k1_gej *a)
Definition: group_impl.h:364
#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:161
static int secp256k1_ge_is_in_correct_subgroup(const secp256k1_ge *ge)
Definition: group_impl.h:889
static void secp256k1_ge_table_set_globalz(size_t len, secp256k1_ge *a, const secp256k1_fe *zr)
Definition: group_impl.h:253
static void secp256k1_ge_neg(secp256k1_ge *r, const secp256k1_ge *a)
Definition: group_impl.h:151
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:145
static void secp256k1_ge_set_infinity(secp256k1_ge *r)
Definition: group_impl.h:295
static void secp256k1_ge_set_all_gej_var(secp256k1_ge *r, const secp256k1_gej *a, size_t len)
Definition: group_impl.h:200
static void secp256k1_gej_set_ge(secp256k1_gej *r, const secp256k1_ge *a)
Definition: group_impl.h:343
static void secp256k1_ge_to_storage(secp256k1_ge_storage *r, const secp256k1_ge *a)
Definition: group_impl.h:828
static SECP256K1_INLINE void secp256k1_ge_storage_cmov(secp256k1_ge_storage *r, const secp256k1_ge_storage *a, int flag)
Definition: group_impl.h:861
#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:179
static int secp256k1_gej_has_quad_y_var(const secp256k1_gej *a)
Definition: group_impl.h:875
static void secp256k1_gej_neg(secp256k1_gej *r, const secp256k1_gej *a)
Definition: group_impl.h:376
static SECP256K1_INLINE void secp256k1_gej_double(secp256k1_gej *r, const secp256k1_gej *a)
Definition: group_impl.h:409
#define SECP256K1_INLINE
Definition: util.h:48
#define VERIFY_CHECK(cond)
Definition: util.h:143
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