Bitcoin Core 31.99.0
P2P Digital Currency
field_5x52_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_FIELD_REPR_IMPL_H
8#define SECP256K1_FIELD_REPR_IMPL_H
9
10#include "checkmem.h"
11#include "util.h"
12#include "field.h"
13#include "modinv64_impl.h"
14
16
17#ifdef VERIFY
18static void secp256k1_fe_impl_verify(const secp256k1_fe *a) {
19 const uint64_t *d = a->n;
20 int m = a->normalized ? 1 : 2 * a->magnitude;
21 /* secp256k1 'p' value defined in "Standards for Efficient Cryptography" (SEC2) 2.7.1. */
22 VERIFY_CHECK(d[0] <= 0xFFFFFFFFFFFFFULL * m);
23 VERIFY_CHECK(d[1] <= 0xFFFFFFFFFFFFFULL * m);
24 VERIFY_CHECK(d[2] <= 0xFFFFFFFFFFFFFULL * m);
25 VERIFY_CHECK(d[3] <= 0xFFFFFFFFFFFFFULL * m);
26 VERIFY_CHECK(d[4] <= 0x0FFFFFFFFFFFFULL * m);
27 if (a->normalized) {
28 if ((d[4] == 0x0FFFFFFFFFFFFULL) && ((d[3] & d[2] & d[1]) == 0xFFFFFFFFFFFFFULL)) {
29 VERIFY_CHECK(d[0] < 0xFFFFEFFFFFC2FULL);
30 }
31 }
32}
33#endif
34
36 r->n[0] = 0xFFFFFFFFFFFFFULL * 2 * m;
37 r->n[1] = 0xFFFFFFFFFFFFFULL * 2 * m;
38 r->n[2] = 0xFFFFFFFFFFFFFULL * 2 * m;
39 r->n[3] = 0xFFFFFFFFFFFFFULL * 2 * m;
40 r->n[4] = 0x0FFFFFFFFFFFFULL * 2 * m;
41}
42
44 uint64_t t0 = r->n[0], t1 = r->n[1], t2 = r->n[2], t3 = r->n[3], t4 = r->n[4];
45
46 /* Reduce t4 at the start so there will be at most a single carry from the first pass */
47 uint64_t m;
48 uint64_t x = t4 >> 48; t4 &= 0x0FFFFFFFFFFFFULL;
49
50 /* The first pass ensures the magnitude is 1, ... */
51 t0 += x * 0x1000003D1ULL;
52 t1 += (t0 >> 52); t0 &= 0xFFFFFFFFFFFFFULL;
53 t2 += (t1 >> 52); t1 &= 0xFFFFFFFFFFFFFULL; m = t1;
54 t3 += (t2 >> 52); t2 &= 0xFFFFFFFFFFFFFULL; m &= t2;
55 t4 += (t3 >> 52); t3 &= 0xFFFFFFFFFFFFFULL; m &= t3;
56
57 /* ... except for a possible carry at bit 48 of t4 (i.e. bit 256 of the field element) */
58 VERIFY_CHECK(t4 >> 49 == 0);
59
60 /* At most a single final reduction is needed; check if the value is >= the field characteristic */
61 x = (t4 >> 48) | ((t4 == 0x0FFFFFFFFFFFFULL) & (m == 0xFFFFFFFFFFFFFULL)
62 & (t0 >= 0xFFFFEFFFFFC2FULL));
63
64 /* Apply the final reduction (for constant-time behaviour, we do it always) */
65 t0 += x * 0x1000003D1ULL;
66 t1 += (t0 >> 52); t0 &= 0xFFFFFFFFFFFFFULL;
67 t2 += (t1 >> 52); t1 &= 0xFFFFFFFFFFFFFULL;
68 t3 += (t2 >> 52); t2 &= 0xFFFFFFFFFFFFFULL;
69 t4 += (t3 >> 52); t3 &= 0xFFFFFFFFFFFFFULL;
70
71 /* If t4 didn't carry to bit 48 already, then it should have after any final reduction */
72 VERIFY_CHECK(t4 >> 48 == x);
73
74 /* Mask off the possible multiple of 2^256 from the final reduction */
75 t4 &= 0x0FFFFFFFFFFFFULL;
76
77 r->n[0] = t0; r->n[1] = t1; r->n[2] = t2; r->n[3] = t3; r->n[4] = t4;
78}
79
81 uint64_t t0 = r->n[0], t1 = r->n[1], t2 = r->n[2], t3 = r->n[3], t4 = r->n[4];
82
83 /* Reduce t4 at the start so there will be at most a single carry from the first pass */
84 uint64_t x = t4 >> 48; t4 &= 0x0FFFFFFFFFFFFULL;
85
86 /* The first pass ensures the magnitude is 1, ... */
87 t0 += x * 0x1000003D1ULL;
88 t1 += (t0 >> 52); t0 &= 0xFFFFFFFFFFFFFULL;
89 t2 += (t1 >> 52); t1 &= 0xFFFFFFFFFFFFFULL;
90 t3 += (t2 >> 52); t2 &= 0xFFFFFFFFFFFFFULL;
91 t4 += (t3 >> 52); t3 &= 0xFFFFFFFFFFFFFULL;
92
93 /* ... except for a possible carry at bit 48 of t4 (i.e. bit 256 of the field element) */
94 VERIFY_CHECK(t4 >> 49 == 0);
95
96 r->n[0] = t0; r->n[1] = t1; r->n[2] = t2; r->n[3] = t3; r->n[4] = t4;
97}
98
100 uint64_t t0 = r->n[0], t1 = r->n[1], t2 = r->n[2], t3 = r->n[3], t4 = r->n[4];
101
102 /* Reduce t4 at the start so there will be at most a single carry from the first pass */
103 uint64_t m;
104 uint64_t x = t4 >> 48; t4 &= 0x0FFFFFFFFFFFFULL;
105
106 /* The first pass ensures the magnitude is 1, ... */
107 t0 += x * 0x1000003D1ULL;
108 t1 += (t0 >> 52); t0 &= 0xFFFFFFFFFFFFFULL;
109 t2 += (t1 >> 52); t1 &= 0xFFFFFFFFFFFFFULL; m = t1;
110 t3 += (t2 >> 52); t2 &= 0xFFFFFFFFFFFFFULL; m &= t2;
111 t4 += (t3 >> 52); t3 &= 0xFFFFFFFFFFFFFULL; m &= t3;
112
113 /* ... except for a possible carry at bit 48 of t4 (i.e. bit 256 of the field element) */
114 VERIFY_CHECK(t4 >> 49 == 0);
115
116 /* At most a single final reduction is needed; check if the value is >= the field characteristic */
117 x = (t4 >> 48) | ((t4 == 0x0FFFFFFFFFFFFULL) & (m == 0xFFFFFFFFFFFFFULL)
118 & (t0 >= 0xFFFFEFFFFFC2FULL));
119
120 if (x) {
121 t0 += 0x1000003D1ULL;
122 t1 += (t0 >> 52); t0 &= 0xFFFFFFFFFFFFFULL;
123 t2 += (t1 >> 52); t1 &= 0xFFFFFFFFFFFFFULL;
124 t3 += (t2 >> 52); t2 &= 0xFFFFFFFFFFFFFULL;
125 t4 += (t3 >> 52); t3 &= 0xFFFFFFFFFFFFFULL;
126
127 /* If t4 didn't carry to bit 48 already, then it should have after any final reduction */
128 VERIFY_CHECK(t4 >> 48 == x);
129
130 /* Mask off the possible multiple of 2^256 from the final reduction */
131 t4 &= 0x0FFFFFFFFFFFFULL;
132 }
133
134 r->n[0] = t0; r->n[1] = t1; r->n[2] = t2; r->n[3] = t3; r->n[4] = t4;
135}
136
138 uint64_t t0 = r->n[0], t1 = r->n[1], t2 = r->n[2], t3 = r->n[3], t4 = r->n[4];
139
140 /* z0 tracks a possible raw value of 0, z1 tracks a possible raw value of P */
141 uint64_t z0, z1;
142
143 /* Reduce t4 at the start so there will be at most a single carry from the first pass */
144 uint64_t x = t4 >> 48; t4 &= 0x0FFFFFFFFFFFFULL;
145
146 /* The first pass ensures the magnitude is 1, ... */
147 t0 += x * 0x1000003D1ULL;
148 t1 += (t0 >> 52); t0 &= 0xFFFFFFFFFFFFFULL; z0 = t0; z1 = t0 ^ 0x1000003D0ULL;
149 t2 += (t1 >> 52); t1 &= 0xFFFFFFFFFFFFFULL; z0 |= t1; z1 &= t1;
150 t3 += (t2 >> 52); t2 &= 0xFFFFFFFFFFFFFULL; z0 |= t2; z1 &= t2;
151 t4 += (t3 >> 52); t3 &= 0xFFFFFFFFFFFFFULL; z0 |= t3; z1 &= t3;
152 z0 |= t4; z1 &= t4 ^ 0xF000000000000ULL;
153
154 /* ... except for a possible carry at bit 48 of t4 (i.e. bit 256 of the field element) */
155 VERIFY_CHECK(t4 >> 49 == 0);
156
157 return (z0 == 0) | (z1 == 0xFFFFFFFFFFFFFULL);
158}
159
161 uint64_t t0, t1, t2, t3, t4;
162 uint64_t z0, z1;
163 uint64_t x;
164
165 t0 = r->n[0];
166 t4 = r->n[4];
167
168 /* Reduce t4 at the start so there will be at most a single carry from the first pass */
169 x = t4 >> 48;
170
171 /* The first pass ensures the magnitude is 1, ... */
172 t0 += x * 0x1000003D1ULL;
173
174 /* z0 tracks a possible raw value of 0, z1 tracks a possible raw value of P */
175 z0 = t0 & 0xFFFFFFFFFFFFFULL;
176 z1 = z0 ^ 0x1000003D0ULL;
177
178 /* Fast return path should catch the majority of cases */
179 if ((z0 != 0ULL) & (z1 != 0xFFFFFFFFFFFFFULL)) {
180 return 0;
181 }
182
183 t1 = r->n[1];
184 t2 = r->n[2];
185 t3 = r->n[3];
186
187 t4 &= 0x0FFFFFFFFFFFFULL;
188
189 t1 += (t0 >> 52);
190 t2 += (t1 >> 52); t1 &= 0xFFFFFFFFFFFFFULL; z0 |= t1; z1 &= t1;
191 t3 += (t2 >> 52); t2 &= 0xFFFFFFFFFFFFFULL; z0 |= t2; z1 &= t2;
192 t4 += (t3 >> 52); t3 &= 0xFFFFFFFFFFFFFULL; z0 |= t3; z1 &= t3;
193 z0 |= t4; z1 &= t4 ^ 0xF000000000000ULL;
194
195 /* ... except for a possible carry at bit 48 of t4 (i.e. bit 256 of the field element) */
196 VERIFY_CHECK(t4 >> 49 == 0);
197
198 return (z0 == 0) | (z1 == 0xFFFFFFFFFFFFFULL);
199}
200
202 r->n[0] = a;
203 r->n[1] = r->n[2] = r->n[3] = r->n[4] = 0;
204}
205
207 const uint64_t *t = a->n;
208 return (t[0] | t[1] | t[2] | t[3] | t[4]) == 0;
209}
210
212 return a->n[0] & 1;
213}
214
216 int i;
217 for (i = 4; i >= 0; i--) {
218 if (a->n[i] > b->n[i]) {
219 return 1;
220 }
221 if (a->n[i] < b->n[i]) {
222 return -1;
223 }
224 }
225 return 0;
226}
227
228static void secp256k1_fe_impl_set_b32_mod(secp256k1_fe *r, const unsigned char *a) {
229 r->n[0] = (uint64_t)a[31]
230 | ((uint64_t)a[30] << 8)
231 | ((uint64_t)a[29] << 16)
232 | ((uint64_t)a[28] << 24)
233 | ((uint64_t)a[27] << 32)
234 | ((uint64_t)a[26] << 40)
235 | ((uint64_t)(a[25] & 0xF) << 48);
236 r->n[1] = (uint64_t)((a[25] >> 4) & 0xF)
237 | ((uint64_t)a[24] << 4)
238 | ((uint64_t)a[23] << 12)
239 | ((uint64_t)a[22] << 20)
240 | ((uint64_t)a[21] << 28)
241 | ((uint64_t)a[20] << 36)
242 | ((uint64_t)a[19] << 44);
243 r->n[2] = (uint64_t)a[18]
244 | ((uint64_t)a[17] << 8)
245 | ((uint64_t)a[16] << 16)
246 | ((uint64_t)a[15] << 24)
247 | ((uint64_t)a[14] << 32)
248 | ((uint64_t)a[13] << 40)
249 | ((uint64_t)(a[12] & 0xF) << 48);
250 r->n[3] = (uint64_t)((a[12] >> 4) & 0xF)
251 | ((uint64_t)a[11] << 4)
252 | ((uint64_t)a[10] << 12)
253 | ((uint64_t)a[9] << 20)
254 | ((uint64_t)a[8] << 28)
255 | ((uint64_t)a[7] << 36)
256 | ((uint64_t)a[6] << 44);
257 r->n[4] = (uint64_t)a[5]
258 | ((uint64_t)a[4] << 8)
259 | ((uint64_t)a[3] << 16)
260 | ((uint64_t)a[2] << 24)
261 | ((uint64_t)a[1] << 32)
262 | ((uint64_t)a[0] << 40);
263}
264
265static int secp256k1_fe_impl_set_b32_limit(secp256k1_fe *r, const unsigned char *a) {
267 return !((r->n[4] == 0x0FFFFFFFFFFFFULL) & ((r->n[3] & r->n[2] & r->n[1]) == 0xFFFFFFFFFFFFFULL) & (r->n[0] >= 0xFFFFEFFFFFC2FULL));
268}
269
271static void secp256k1_fe_impl_get_b32(unsigned char *r, const secp256k1_fe *a) {
272 secp256k1_write_be64(&r[0], (a->n[4] << 16) | (a->n[3] >> 36));
273 secp256k1_write_be64(&r[8], (a->n[3] << 28) | (a->n[2] >> 24));
274 secp256k1_write_be64(&r[16], (a->n[2] << 40) | (a->n[1] >> 12));
275 secp256k1_write_be64(&r[24], (a->n[1] << 52) | a->n[0]);
276}
277
279 /* For all legal values of m (0..31), the following properties hold: */
280 VERIFY_CHECK(0xFFFFEFFFFFC2FULL * 2 * (m + 1) >= 0xFFFFFFFFFFFFFULL * 2 * m);
281 VERIFY_CHECK(0xFFFFFFFFFFFFFULL * 2 * (m + 1) >= 0xFFFFFFFFFFFFFULL * 2 * m);
282 VERIFY_CHECK(0x0FFFFFFFFFFFFULL * 2 * (m + 1) >= 0x0FFFFFFFFFFFFULL * 2 * m);
283
284 /* Due to the properties above, the left hand in the subtractions below is never less than
285 * the right hand. */
286 r->n[0] = 0xFFFFEFFFFFC2FULL * 2 * (m + 1) - a->n[0];
287 r->n[1] = 0xFFFFFFFFFFFFFULL * 2 * (m + 1) - a->n[1];
288 r->n[2] = 0xFFFFFFFFFFFFFULL * 2 * (m + 1) - a->n[2];
289 r->n[3] = 0xFFFFFFFFFFFFFULL * 2 * (m + 1) - a->n[3];
290 r->n[4] = 0x0FFFFFFFFFFFFULL * 2 * (m + 1) - a->n[4];
291}
292
294 r->n[0] *= a;
295 r->n[1] *= a;
296 r->n[2] *= a;
297 r->n[3] *= a;
298 r->n[4] *= a;
299}
300
302 r->n[0] += a;
303}
304
306 r->n[0] += a->n[0];
307 r->n[1] += a->n[1];
308 r->n[2] += a->n[2];
309 r->n[3] += a->n[3];
310 r->n[4] += a->n[4];
311}
312
314 secp256k1_fe_mul_inner(r->n, a->n, b->n);
315}
316
318 secp256k1_fe_sqr_inner(r->n, a->n);
319}
320
322 uint64_t mask0, mask1;
323 volatile int vflag = flag;
324 VERIFY_CHECK(flag == 0 || flag == 1);
325 SECP256K1_CHECKMEM_CHECK_VERIFY(r->n, sizeof(r->n));
326 mask0 = vflag + ~((uint64_t)0);
327 mask1 = ~mask0;
328 r->n[0] = (r->n[0] & mask0) | (a->n[0] & mask1);
329 r->n[1] = (r->n[1] & mask0) | (a->n[1] & mask1);
330 r->n[2] = (r->n[2] & mask0) | (a->n[2] & mask1);
331 r->n[3] = (r->n[3] & mask0) | (a->n[3] & mask1);
332 r->n[4] = (r->n[4] & mask0) | (a->n[4] & mask1);
333}
334
336 uint64_t t0 = r->n[0], t1 = r->n[1], t2 = r->n[2], t3 = r->n[3], t4 = r->n[4];
337 uint64_t one = (uint64_t)1;
338 uint64_t mask = -(t0 & one) >> 12;
339
340 /* Bounds analysis (over the rationals).
341 *
342 * Let m = r->magnitude
343 * C = 0xFFFFFFFFFFFFFULL * 2
344 * D = 0x0FFFFFFFFFFFFULL * 2
345 *
346 * Initial bounds: t0..t3 <= C * m
347 * t4 <= D * m
348 */
349
350 t0 += 0xFFFFEFFFFFC2FULL & mask;
351 t1 += mask;
352 t2 += mask;
353 t3 += mask;
354 t4 += mask >> 4;
355
356 VERIFY_CHECK((t0 & one) == 0);
357
358 /* t0..t3: added <= C/2
359 * t4: added <= D/2
360 *
361 * Current bounds: t0..t3 <= C * (m + 1/2)
362 * t4 <= D * (m + 1/2)
363 */
364
365 r->n[0] = (t0 >> 1) + ((t1 & one) << 51);
366 r->n[1] = (t1 >> 1) + ((t2 & one) << 51);
367 r->n[2] = (t2 >> 1) + ((t3 & one) << 51);
368 r->n[3] = (t3 >> 1) + ((t4 & one) << 51);
369 r->n[4] = (t4 >> 1);
370
371 /* t0..t3: shifted right and added <= C/4 + 1/2
372 * t4: shifted right
373 *
374 * Current bounds: t0..t3 <= C * (m/2 + 1/2)
375 * t4 <= D * (m/2 + 1/4)
376 *
377 * Therefore the output magnitude (M) has to be set such that:
378 * t0..t3: C * M >= C * (m/2 + 1/2)
379 * t4: D * M >= D * (m/2 + 1/4)
380 *
381 * It suffices for all limbs that, for any input magnitude m:
382 * M >= m/2 + 1/2
383 *
384 * and since we want the smallest such integer value for M:
385 * M == floor(m/2) + 1
386 */
387}
388
390 uint64_t mask0, mask1;
391 volatile int vflag = flag;
392 VERIFY_CHECK(flag == 0 || flag == 1);
393 SECP256K1_CHECKMEM_CHECK_VERIFY(r->n, sizeof(r->n));
394 mask0 = vflag + ~((uint64_t)0);
395 mask1 = ~mask0;
396 r->n[0] = (r->n[0] & mask0) | (a->n[0] & mask1);
397 r->n[1] = (r->n[1] & mask0) | (a->n[1] & mask1);
398 r->n[2] = (r->n[2] & mask0) | (a->n[2] & mask1);
399 r->n[3] = (r->n[3] & mask0) | (a->n[3] & mask1);
400}
401
403 r->n[0] = a->n[0] | a->n[1] << 52;
404 r->n[1] = a->n[1] >> 12 | a->n[2] << 40;
405 r->n[2] = a->n[2] >> 24 | a->n[3] << 28;
406 r->n[3] = a->n[3] >> 36 | a->n[4] << 16;
407}
408
410 r->n[0] = a->n[0] & 0xFFFFFFFFFFFFFULL;
411 r->n[1] = a->n[0] >> 52 | ((a->n[1] << 12) & 0xFFFFFFFFFFFFFULL);
412 r->n[2] = a->n[1] >> 40 | ((a->n[2] << 24) & 0xFFFFFFFFFFFFFULL);
413 r->n[3] = a->n[2] >> 28 | ((a->n[3] << 36) & 0xFFFFFFFFFFFFFULL);
414 r->n[4] = a->n[3] >> 16;
415}
416
418 const uint64_t M52 = UINT64_MAX >> 12;
419 const uint64_t a0 = a->v[0], a1 = a->v[1], a2 = a->v[2], a3 = a->v[3], a4 = a->v[4];
420
421 /* The output from secp256k1_modinv64{_var} should be normalized to range [0,modulus), and
422 * have limbs in [0,2^62). The modulus is < 2^256, so the top limb must be below 2^(256-62*4).
423 */
424 VERIFY_CHECK(a0 >> 62 == 0);
425 VERIFY_CHECK(a1 >> 62 == 0);
426 VERIFY_CHECK(a2 >> 62 == 0);
427 VERIFY_CHECK(a3 >> 62 == 0);
428 VERIFY_CHECK(a4 >> 8 == 0);
429
430 r->n[0] = a0 & M52;
431 r->n[1] = (a0 >> 52 | a1 << 10) & M52;
432 r->n[2] = (a1 >> 42 | a2 << 20) & M52;
433 r->n[3] = (a2 >> 32 | a3 << 30) & M52;
434 r->n[4] = (a3 >> 22 | a4 << 40);
435}
436
438 const uint64_t M62 = UINT64_MAX >> 2;
439 const uint64_t a0 = a->n[0], a1 = a->n[1], a2 = a->n[2], a3 = a->n[3], a4 = a->n[4];
440
441 r->v[0] = (a0 | a1 << 52) & M62;
442 r->v[1] = (a1 >> 10 | a2 << 42) & M62;
443 r->v[2] = (a2 >> 20 | a3 << 32) & M62;
444 r->v[3] = (a3 >> 30 | a4 << 22) & M62;
445 r->v[4] = a4 >> 40;
446}
447
449 {{-0x1000003D1LL, 0, 0, 0, 256}},
450 0x27C7F6E22DDACACFLL
451};
452
454 secp256k1_fe tmp = *x;
456
461}
462
464 secp256k1_fe tmp = *x;
466
471}
472
474 secp256k1_fe tmp;
476 int jac, ret;
477
478 tmp = *x;
480 /* secp256k1_jacobi64_maybe_var cannot deal with input 0. */
481 if (secp256k1_fe_is_zero(&tmp)) return 1;
484 if (jac == 0) {
485 /* secp256k1_jacobi64_maybe_var failed to compute the Jacobi symbol. Fall back
486 * to computing a square root. This should be extremely rare with random
487 * input (except in VERIFY mode, where a lower iteration count is used). */
488 secp256k1_fe dummy;
489 ret = secp256k1_fe_sqrt(&dummy, &tmp);
490 } else {
491 ret = jac >= 0;
492 }
493 return ret;
494}
495
496#endif /* SECP256K1_FIELD_REPR_IMPL_H */
int ret
#define SECP256K1_CHECKMEM_CHECK_VERIFY(p, len)
Definition: checkmem.h:114
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_normalize_var
Definition: field.h:80
#define secp256k1_fe_is_zero
Definition: field.h:84
#define secp256k1_fe_normalize
Definition: field.h:78
static SECP256K1_INLINE void secp256k1_fe_sqr_inner(uint32_t *r, const uint32_t *a)
static SECP256K1_INLINE void secp256k1_fe_mul_inner(uint32_t *r, const uint32_t *a, const uint32_t *SECP256K1_RESTRICT b)
static SECP256K1_INLINE void secp256k1_fe_impl_half(secp256k1_fe *r)
static void secp256k1_fe_impl_set_b32_mod(secp256k1_fe *r, const unsigned char *a)
static void secp256k1_fe_impl_normalize_weak(secp256k1_fe *r)
static int secp256k1_fe_impl_is_square_var(const secp256k1_fe *x)
static void secp256k1_fe_impl_get_b32(unsigned char *r, const secp256k1_fe *a)
Convert a field element to a 32-byte big endian value.
static SECP256K1_INLINE void secp256k1_fe_impl_add(secp256k1_fe *r, const secp256k1_fe *a)
static SECP256K1_FORCE_INLINE void secp256k1_fe_impl_mul(secp256k1_fe *r, const secp256k1_fe *a, const secp256k1_fe *SECP256K1_RESTRICT b)
static SECP256K1_INLINE void secp256k1_fe_impl_set_int(secp256k1_fe *r, int a)
static SECP256K1_INLINE int secp256k1_fe_impl_is_zero(const secp256k1_fe *a)
static void secp256k1_fe_impl_get_bounds(secp256k1_fe *r, int m)
static int secp256k1_fe_impl_set_b32_limit(secp256k1_fe *r, const unsigned char *a)
static SECP256K1_INLINE void secp256k1_fe_storage_cmov(secp256k1_fe_storage *r, const secp256k1_fe_storage *a, int flag)
static SECP256K1_INLINE void secp256k1_fe_impl_negate_unchecked(secp256k1_fe *r, const secp256k1_fe *a, int m)
static SECP256K1_INLINE void secp256k1_fe_impl_mul_int_unchecked(secp256k1_fe *r, int a)
static int secp256k1_fe_impl_cmp_var(const secp256k1_fe *a, const secp256k1_fe *b)
static void secp256k1_fe_to_signed62(secp256k1_modinv64_signed62 *r, const secp256k1_fe *a)
static int secp256k1_fe_impl_normalizes_to_zero(const secp256k1_fe *r)
static void secp256k1_fe_impl_inv_var(secp256k1_fe *r, const secp256k1_fe *x)
static SECP256K1_FORCE_INLINE void secp256k1_fe_impl_sqr(secp256k1_fe *r, const secp256k1_fe *a)
static SECP256K1_INLINE void secp256k1_fe_impl_from_storage(secp256k1_fe *r, const secp256k1_fe_storage *a)
static void secp256k1_fe_impl_to_storage(secp256k1_fe_storage *r, const secp256k1_fe *a)
static SECP256K1_INLINE void secp256k1_fe_impl_add_int(secp256k1_fe *r, int a)
static int secp256k1_fe_impl_normalizes_to_zero_var(const secp256k1_fe *r)
static void secp256k1_fe_impl_normalize(secp256k1_fe *r)
static SECP256K1_INLINE void secp256k1_fe_impl_cmov(secp256k1_fe *r, const secp256k1_fe *a, int flag)
static void secp256k1_fe_impl_inv(secp256k1_fe *r, const secp256k1_fe *x)
static void secp256k1_fe_impl_normalize_var(secp256k1_fe *r)
static void secp256k1_fe_from_signed62(secp256k1_fe *r, const secp256k1_modinv64_signed62 *a)
static const secp256k1_modinv64_modinfo secp256k1_const_modinfo_fe
static SECP256K1_INLINE int secp256k1_fe_impl_is_odd(const secp256k1_fe *a)
static void secp256k1_modinv64(secp256k1_modinv64_signed62 *x, const secp256k1_modinv64_modinfo *modinfo)
static void secp256k1_modinv64_var(secp256k1_modinv64_signed62 *x, const secp256k1_modinv64_modinfo *modinfo)
static int secp256k1_jacobi64_maybe_var(const secp256k1_modinv64_signed62 *x, const secp256k1_modinv64_modinfo *modinfo)
#define SECP256K1_INLINE
Definition: util.h:53
static SECP256K1_INLINE void secp256k1_write_be64(unsigned char *p, uint64_t x)
Definition: util.h:456
#define VERIFY_CHECK(cond)
Definition: util.h:169
#define SECP256K1_RESTRICT
Definition: util.h:206
#define SECP256K1_FORCE_INLINE
Definition: util.h:67
This field implementation represents the value as 10 uint32_t limbs in base 2^26.
Definition: field_10x26.h:14
uint32_t n[10]
Definition: field_10x26.h:22