7#ifndef SECP256K1_SCALAR_REPR_IMPL_H
8#define SECP256K1_SCALAR_REPR_IMPL_H
15#define SECP256K1_N_0 ((uint32_t)0xD0364141UL)
16#define SECP256K1_N_1 ((uint32_t)0xBFD25E8CUL)
17#define SECP256K1_N_2 ((uint32_t)0xAF48A03BUL)
18#define SECP256K1_N_3 ((uint32_t)0xBAAEDCE6UL)
19#define SECP256K1_N_4 ((uint32_t)0xFFFFFFFEUL)
20#define SECP256K1_N_5 ((uint32_t)0xFFFFFFFFUL)
21#define SECP256K1_N_6 ((uint32_t)0xFFFFFFFFUL)
22#define SECP256K1_N_7 ((uint32_t)0xFFFFFFFFUL)
25#define SECP256K1_N_C_0 (~SECP256K1_N_0 + 1)
26#define SECP256K1_N_C_1 (~SECP256K1_N_1)
27#define SECP256K1_N_C_2 (~SECP256K1_N_2)
28#define SECP256K1_N_C_3 (~SECP256K1_N_3)
29#define SECP256K1_N_C_4 (1)
32#define SECP256K1_N_H_0 ((uint32_t)0x681B20A0UL)
33#define SECP256K1_N_H_1 ((uint32_t)0xDFE92F46UL)
34#define SECP256K1_N_H_2 ((uint32_t)0x57A4501DUL)
35#define SECP256K1_N_H_3 ((uint32_t)0x5D576E73UL)
36#define SECP256K1_N_H_4 ((uint32_t)0xFFFFFFFFUL)
37#define SECP256K1_N_H_5 ((uint32_t)0xFFFFFFFFUL)
38#define SECP256K1_N_H_6 ((uint32_t)0xFFFFFFFFUL)
39#define SECP256K1_N_H_7 ((uint32_t)0x7FFFFFFFUL)
59 return (
a->d[offset >> 5] >> (offset & 0x1F)) & (0xFFFFFFFF >> (32 -
count));
67 if ((offset +
count - 1) >> 5 == offset >> 5) {
71 return ((
a->d[offset >> 5] >> (offset & 0x1F)) | (
a->d[(offset >> 5) + 1] << (32 - (offset & 0x1F)))) & (0xFFFFFFFF >> (32 -
count));
98 r->
d[0] =
t & 0xFFFFFFFFUL;
t >>= 32;
100 r->
d[1] =
t & 0xFFFFFFFFUL;
t >>= 32;
102 r->
d[2] =
t & 0xFFFFFFFFUL;
t >>= 32;
104 r->
d[3] =
t & 0xFFFFFFFFUL;
t >>= 32;
106 r->
d[4] =
t & 0xFFFFFFFFUL;
t >>= 32;
108 r->
d[5] =
t & 0xFFFFFFFFUL;
t >>= 32;
110 r->
d[6] =
t & 0xFFFFFFFFUL;
t >>= 32;
112 r->
d[7] =
t & 0xFFFFFFFFUL;
124 r->
d[0] =
t & 0xFFFFFFFFULL;
t >>= 32;
126 r->
d[1] =
t & 0xFFFFFFFFULL;
t >>= 32;
128 r->
d[2] =
t & 0xFFFFFFFFULL;
t >>= 32;
130 r->
d[3] =
t & 0xFFFFFFFFULL;
t >>= 32;
132 r->
d[4] =
t & 0xFFFFFFFFULL;
t >>= 32;
134 r->
d[5] =
t & 0xFFFFFFFFULL;
t >>= 32;
136 r->
d[6] =
t & 0xFFFFFFFFULL;
t >>= 32;
138 r->
d[7] =
t & 0xFFFFFFFFULL;
t >>= 32;
149 volatile int vflag = flag;
156 r->
d[0] =
t & 0xFFFFFFFFULL;
t >>= 32;
158 r->
d[1] =
t & 0xFFFFFFFFULL;
t >>= 32;
160 r->
d[2] =
t & 0xFFFFFFFFULL;
t >>= 32;
162 r->
d[3] =
t & 0xFFFFFFFFULL;
t >>= 32;
164 r->
d[4] =
t & 0xFFFFFFFFULL;
t >>= 32;
166 r->
d[5] =
t & 0xFFFFFFFFULL;
t >>= 32;
168 r->
d[6] =
t & 0xFFFFFFFFULL;
t >>= 32;
170 r->
d[7] =
t & 0xFFFFFFFFULL;
210 return (
a->d[0] |
a->d[1] |
a->d[2] |
a->d[3] |
a->d[4] |
a->d[5] |
a->d[6] |
a->d[7]) == 0;
257 r->
d[0] =
t;
t >>= 32;
260 r->
d[1] =
t;
t >>= 32;
263 r->
d[2] =
t;
t >>= 32;
266 r->
d[3] =
t;
t >>= 32;
269 r->
d[4] =
t;
t >>= 32;
272 r->
d[5] =
t;
t >>= 32;
275 r->
d[6] =
t;
t >>= 32;
288 return ((
a->d[0] ^ 1) |
a->d[1] |
a->d[2] |
a->d[3] |
a->d[4] |
a->d[5] |
a->d[6] |
a->d[7]) == 0;
314 volatile int vflag = flag;
338 return 2 * (mask == 0) - 1;
345#define muladd(a,b) { \
348 uint64_t t = (uint64_t)a * b; \
356 VERIFY_CHECK((c1 >= th) || (c2 != 0)); \
360#define muladd_fast(a,b) { \
363 uint64_t t = (uint64_t)a * b; \
370 VERIFY_CHECK(c1 >= th); \
383#define sumadd_fast(a) { \
386 VERIFY_CHECK((c1 != 0) | (c0 >= (a))); \
387 VERIFY_CHECK(c2 == 0); \
391#define extract(n) { \
399#define extract_fast(n) { \
403 VERIFY_CHECK(c2 == 0); \
409 uint32_t m0,
m1,
m2,
m3,
m4,
m5,
m6,
m7,
m8,
m9,
m10,
m11,
m12;
528 r->
d[0] =
c & 0xFFFFFFFFUL;
c >>= 32;
530 r->
d[1] =
c & 0xFFFFFFFFUL;
c >>= 32;
532 r->
d[2] =
c & 0xFFFFFFFFUL;
c >>= 32;
534 r->
d[3] =
c & 0xFFFFFFFFUL;
c >>= 32;
536 r->
d[4] =
c & 0xFFFFFFFFUL;
c >>= 32;
538 r->
d[5] =
c & 0xFFFFFFFFUL;
c >>= 32;
540 r->
d[6] =
c & 0xFFFFFFFFUL;
c >>= 32;
542 r->
d[7] =
c & 0xFFFFFFFFUL;
c >>= 32;
682 return ((
a->d[0] ^ b->
d[0]) | (
a->d[1] ^ b->
d[1]) | (
a->d[2] ^ b->
d[2]) | (
a->d[3] ^ b->
d[3]) | (
a->d[4] ^ b->
d[4]) | (
a->d[5] ^ b->
d[5]) | (
a->d[6] ^ b->
d[6]) | (
a->d[7] ^ b->
d[7])) == 0;
713 volatile int vflag = flag;
749 r->
d[0] =
a0 |
a1 << 30;
750 r->
d[1] =
a1 >> 2 |
a2 << 28;
751 r->
d[2] =
a2 >> 4 |
a3 << 26;
752 r->
d[3] =
a3 >> 6 |
a4 << 24;
753 r->
d[4] =
a4 >> 8 |
a5 << 22;
754 r->
d[5] =
a5 >> 10 |
a6 << 20;
755 r->
d[6] =
a6 >> 12 |
a7 << 18;
756 r->
d[7] =
a7 >> 14 |
a8 << 16;
768 r->
v[1] = (
a0 >> 30 |
a1 << 2) &
M30;
769 r->
v[2] = (
a1 >> 28 |
a2 << 4) &
M30;
770 r->
v[3] = (
a2 >> 26 |
a3 << 6) &
M30;
771 r->
v[4] = (
a3 >> 24 |
a4 << 8) &
M30;
772 r->
v[5] = (
a4 >> 22 |
a5 << 10) &
M30;
773 r->
v[6] = (
a5 >> 20 |
a6 << 12) &
M30;
774 r->
v[7] = (
a6 >> 18 |
a7 << 14) &
M30;
779 {{0x10364141L, 0x3F497A33L, 0x348A03BBL, 0x2BB739ABL, -0x146L, 0, 0, 0, 65536}},
816 return !(
a->d[0] & 1);
#define SECP256K1_CHECKMEM_CHECK_VERIFY(p, len)
static void secp256k1_modinv32_var(secp256k1_modinv32_signed30 *x, const secp256k1_modinv32_modinfo *modinfo)
static void secp256k1_modinv32(secp256k1_modinv32_signed30 *x, const secp256k1_modinv32_modinfo *modinfo)
#define SECP256K1_SCALAR_VERIFY(r)
static SECP256K1_INLINE int secp256k1_scalar_is_even(const secp256k1_scalar *a)
static SECP256K1_INLINE int secp256k1_scalar_check_overflow(const secp256k1_scalar *a)
static SECP256K1_INLINE void secp256k1_scalar_mul_shift_var(secp256k1_scalar *r, const secp256k1_scalar *a, const secp256k1_scalar *b, unsigned int shift)
static void secp256k1_scalar_half(secp256k1_scalar *r, const secp256k1_scalar *a)
static void secp256k1_scalar_split_128(secp256k1_scalar *r1, secp256k1_scalar *r2, const secp256k1_scalar *k)
#define extract(n)
Extract the lowest 32 bits of (c0,c1,c2) into n, and left shift the number 32 bits.
static void secp256k1_scalar_set_b32(secp256k1_scalar *r, const unsigned char *b32, int *overflow)
static void secp256k1_scalar_mul_512(uint32_t *l, const secp256k1_scalar *a, const secp256k1_scalar *b)
static SECP256K1_INLINE uint32_t secp256k1_scalar_get_bits_var(const secp256k1_scalar *a, unsigned int offset, unsigned int count)
static void secp256k1_scalar_inverse_var(secp256k1_scalar *r, const secp256k1_scalar *x)
#define sumadd_fast(a)
Add a to the number defined by (c0,c1).
static void secp256k1_scalar_get_b32(unsigned char *bin, const secp256k1_scalar *a)
static SECP256K1_INLINE void secp256k1_scalar_set_int(secp256k1_scalar *r, unsigned int v)
static void secp256k1_scalar_inverse(secp256k1_scalar *r, const secp256k1_scalar *x)
static SECP256K1_INLINE void secp256k1_scalar_cmov(secp256k1_scalar *r, const secp256k1_scalar *a, int flag)
#define extract_fast(n)
Extract the lowest 32 bits of (c0,c1,c2) into n, and left shift the number 32 bits.
#define muladd(a, b)
Add a*b to the number defined by (c0,c1,c2).
static void secp256k1_scalar_reduce_512(secp256k1_scalar *r, const uint32_t *l)
static SECP256K1_INLINE int secp256k1_scalar_eq(const secp256k1_scalar *a, const secp256k1_scalar *b)
static int secp256k1_scalar_add(secp256k1_scalar *r, const secp256k1_scalar *a, const secp256k1_scalar *b)
#define sumadd(a)
Add a to the number defined by (c0,c1,c2).
static int secp256k1_scalar_cond_negate(secp256k1_scalar *r, int flag)
static void secp256k1_scalar_mul(secp256k1_scalar *r, const secp256k1_scalar *a, const secp256k1_scalar *b)
static const secp256k1_modinv32_modinfo secp256k1_const_modinfo_scalar
static SECP256K1_INLINE int secp256k1_scalar_reduce(secp256k1_scalar *r, uint32_t overflow)
static void secp256k1_scalar_negate(secp256k1_scalar *r, const secp256k1_scalar *a)
static SECP256K1_INLINE int secp256k1_scalar_is_zero(const secp256k1_scalar *a)
static int secp256k1_scalar_is_high(const secp256k1_scalar *a)
static void secp256k1_scalar_from_signed30(secp256k1_scalar *r, const secp256k1_modinv32_signed30 *a)
static SECP256K1_INLINE uint32_t secp256k1_scalar_get_bits_limb32(const secp256k1_scalar *a, unsigned int offset, unsigned int count)
static void secp256k1_scalar_cadd_bit(secp256k1_scalar *r, unsigned int bit, int flag)
#define muladd_fast(a, b)
Add a*b to the number defined by (c0,c1).
static SECP256K1_INLINE int secp256k1_scalar_is_one(const secp256k1_scalar *a)
static void secp256k1_scalar_to_signed30(secp256k1_modinv32_signed30 *r, const secp256k1_scalar *a)
static SECP256K1_INLINE uint32_t secp256k1_read_be32(const unsigned char *p)
static SECP256K1_INLINE void secp256k1_write_be32(unsigned char *p, uint32_t x)
#define VERIFY_CHECK(cond)
A scalar modulo the group order of the secp256k1 curve.
constexpr auto Ticks(Dur2 d)
Helper to count the seconds of a duration/time_point.