7#ifndef SECP256K1_SCALAR_REPR_IMPL_H
8#define SECP256K1_SCALAR_REPR_IMPL_H
16#define SECP256K1_N_0 ((uint64_t)0xBFD25E8CD0364141ULL)
17#define SECP256K1_N_1 ((uint64_t)0xBAAEDCE6AF48A03BULL)
18#define SECP256K1_N_2 ((uint64_t)0xFFFFFFFFFFFFFFFEULL)
19#define SECP256K1_N_3 ((uint64_t)0xFFFFFFFFFFFFFFFFULL)
22#define SECP256K1_N_C_0 (~SECP256K1_N_0 + 1)
23#define SECP256K1_N_C_1 (~SECP256K1_N_1)
24#define SECP256K1_N_C_2 (1)
27#define SECP256K1_N_H_0 ((uint64_t)0xDFE92F46681B20A0ULL)
28#define SECP256K1_N_H_1 ((uint64_t)0x5D576E7357A4501DULL)
29#define SECP256K1_N_H_2 ((uint64_t)0xFFFFFFFFFFFFFFFFULL)
30#define SECP256K1_N_H_3 ((uint64_t)0x7FFFFFFFFFFFFFFFULL)
47 return (a->
d[offset >> 6] >> (offset & 0x3F)) & (0xFFFFFFFF >> (32 -
count));
55 if ((offset +
count - 1) >> 6 == offset >> 6) {
56 return (a->
d[offset >> 6] >> (offset & 0x3F)) & (0xFFFFFFFF >> (32 -
count));
60 return ((a->
d[offset >> 6] >> (offset & 0x3F)) | (a->
d[(offset >> 6) + 1] << (64 - (offset & 0x3F)))) & (0xFFFFFFFF >> (32 -
count));
124 volatile int vflag = flag;
129 bit += ((uint32_t) vflag - 1) & 0x100;
173 return (a->
d[0] | a->
d[1] | a->
d[2] | a->
d[3]) == 0;
212 uint64_t mask = -(uint64_t)(a->
d[0] & 1U);
241 return ((a->
d[0] ^ 1) | a->
d[1] | a->
d[2] | a->
d[3]) == 0;
261 volatile int vflag = flag;
262 uint64_t mask = -vflag;
282 return 2 * (mask == 0) - 1;
288#define muladd(a,b) { \
291 secp256k1_uint128 t; \
292 secp256k1_u128_mul(&t, a, b); \
293 th = secp256k1_u128_hi_u64(&t); \
294 tl = secp256k1_u128_to_u64(&t); \
300 VERIFY_CHECK((c1 >= th) || (c2 != 0)); \
304#define muladd_fast(a,b) { \
307 secp256k1_uint128 t; \
308 secp256k1_u128_mul(&t, a, b); \
309 th = secp256k1_u128_hi_u64(&t); \
310 tl = secp256k1_u128_to_u64(&t); \
315 VERIFY_CHECK(c1 >= th); \
328#define sumadd_fast(a) { \
331 VERIFY_CHECK((c1 != 0) | (c0 >= (a))); \
332 VERIFY_CHECK(c2 == 0); \
336#define extract(n) { \
344#define extract_fast(n) { \
348 VERIFY_CHECK(c2 == 0); \
354 uint64_t m0, m1, m2, m3, m4, m5, m6;
355 uint64_t p0, p1, p2, p3, p4;
358 __asm__ __volatile__(
360 "movq 32(%%rsi), %%r11\n"
361 "movq 40(%%rsi), %%r12\n"
362 "movq 48(%%rsi), %%r13\n"
363 "movq 56(%%rsi), %%r14\n"
365 "movq 0(%%rsi), %%r8\n"
367 "xorq %%r10, %%r10\n"
377 "addq 8(%%rsi), %%r9\n"
383 "adcq %%rdx, %%r10\n"
389 "adcq %%rdx, %%r10\n"
395 "addq 16(%%rsi), %%r10\n"
401 "addq %%rax, %%r10\n"
407 "addq %%rax, %%r10\n"
411 "addq %%r11, %%r10\n"
416 "xorq %%r10, %%r10\n"
418 "addq 24(%%rsi), %%r8\n"
444 "adcq %%rdx, %%r10\n"
453 "addq %%r14, %%r10\n"
459 :
"=&g"(m0),
"=&g"(m1),
"=&g"(m2),
"=g"(m3),
"=g"(m4),
"=g"(m5),
"=g"(m6)
461 :
"rax",
"rdx",
"r8",
"r9",
"r10",
"r11",
"r12",
"r13",
"r14",
"cc");
472 __asm__ __volatile__(
480 "xorq %%r10, %%r10\n"
496 "adcq %%rdx, %%r10\n"
502 "adcq %%rdx, %%r10\n"
514 "addq %%rax, %%r10\n"
520 "addq %%rax, %%r10\n"
524 "addq %%r11, %%r10\n"
546 :
"=&g"(p0),
"=&g"(p1),
"=&g"(p2),
"=g"(p3),
"=g"(p4)
548 :
"rax",
"rdx",
"r8",
"r9",
"r10",
"r11",
"r12",
"r13",
"cc");
557 __asm__ __volatile__(
567 "movq %%rax, 0(%q6)\n"
580 "movq %%r8, 8(%q6)\n"
589 "movq %%r9, 16(%q6)\n"
595 "movq %%r8, 24(%q6)\n"
600 :
"rax",
"rdx",
"r8",
"r9",
"r10",
"cc",
"memory");
607 uint64_t c, c0, c1, c2;
608 uint64_t n0 = l[4], n1 = l[5], n2 = l[6], n3 = l[7];
609 uint64_t m0, m1, m2, m3, m4, m5;
611 uint64_t p0, p1, p2, p3;
616 c0 = l[0]; c1 = 0; c2 = 0;
643 c0 = m0; c1 = 0; c2 = 0;
684 const uint64_t *pb = b->
d;
685 __asm__ __volatile__(
687 "movq 0(%%rdi), %%r15\n"
688 "movq 8(%%rdi), %%rbx\n"
689 "movq 16(%%rdi), %%rcx\n"
690 "movq 0(%%rdx), %%r11\n"
691 "movq 8(%%rdx), %%r12\n"
692 "movq 16(%%rdx), %%r13\n"
693 "movq 24(%%rdx), %%r14\n"
695 "movq %%r15, %%rax\n"
698 "movq %%rax, 0(%%rsi)\n"
702 "xorq %%r10, %%r10\n"
704 "movq %%r15, %%rax\n"
710 "movq %%rbx, %%rax\n"
716 "movq %%r8, 8(%%rsi)\n"
719 "movq %%r15, %%rax\n"
722 "adcq %%rdx, %%r10\n"
725 "movq %%rbx, %%rax\n"
728 "adcq %%rdx, %%r10\n"
731 "movq %%rcx, %%rax\n"
734 "adcq %%rdx, %%r10\n"
737 "movq %%r9, 16(%%rsi)\n"
740 "movq %%r15, %%rax\n"
742 "addq %%rax, %%r10\n"
746 "movq 24(%%rdi), %%r15\n"
748 "movq %%rbx, %%rax\n"
750 "addq %%rax, %%r10\n"
754 "movq %%rcx, %%rax\n"
756 "addq %%rax, %%r10\n"
760 "movq %%r15, %%rax\n"
762 "addq %%rax, %%r10\n"
766 "movq %%r10, 24(%%rsi)\n"
767 "xorq %%r10, %%r10\n"
769 "movq %%rbx, %%rax\n"
775 "movq %%rcx, %%rax\n"
781 "movq %%r15, %%rax\n"
787 "movq %%r8, 32(%%rsi)\n"
790 "movq %%rcx, %%rax\n"
793 "adcq %%rdx, %%r10\n"
796 "movq %%r15, %%rax\n"
799 "adcq %%rdx, %%r10\n"
802 "movq %%r9, 40(%%rsi)\n"
804 "movq %%r15, %%rax\n"
806 "addq %%rax, %%r10\n"
809 "movq %%r10, 48(%%rsi)\n"
811 "movq %%r8, 56(%%rsi)\n"
814 :
"rax",
"rbx",
"rcx",
"r8",
"r9",
"r10",
"r11",
"r12",
"r13",
"r14",
"r15",
"cc",
"memory");
820 uint64_t c0 = 0, c1 = 0;
890 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])) == 0;
895 unsigned int shiftlimbs;
896 unsigned int shiftlow;
897 unsigned int shifthigh;
903 shiftlimbs = shift >> 6;
904 shiftlow = shift & 0x3F;
905 shifthigh = 64 - shiftlow;
906 r->
d[0] = shift < 512 ? (l[0 + shiftlimbs] >> shiftlow | (shift < 448 && shiftlow ? (l[1 + shiftlimbs] << shifthigh) : 0)) : 0;
907 r->
d[1] = shift < 448 ? (l[1 + shiftlimbs] >> shiftlow | (shift < 384 && shiftlow ? (l[2 + shiftlimbs] << shifthigh) : 0)) : 0;
908 r->
d[2] = shift < 384 ? (l[2 + shiftlimbs] >> shiftlow | (shift < 320 && shiftlow ? (l[3 + shiftlimbs] << shifthigh) : 0)) : 0;
909 r->
d[3] = shift < 320 ? (l[3 + shiftlimbs] >> shiftlow) : 0;
916 uint64_t mask0, mask1;
917 volatile int vflag = flag;
922 mask0 = vflag + ~((uint64_t)0);
924 r->
d[0] = (r->
d[0] & mask0) | (a->
d[0] & mask1);
925 r->
d[1] = (r->
d[1] & mask0) | (a->
d[1] & mask1);
926 r->
d[2] = (r->
d[2] & mask0) | (a->
d[2] & mask1);
927 r->
d[3] = (r->
d[3] & mask0) | (a->
d[3] & mask1);
933 const uint64_t a0 = a->
v[0], a1 = a->
v[1], a2 = a->
v[2], a3 = a->
v[3], a4 = a->
v[4];
944 r->
d[0] = a0 | a1 << 62;
945 r->
d[1] = a1 >> 2 | a2 << 60;
946 r->
d[2] = a2 >> 4 | a3 << 58;
947 r->
d[3] = a3 >> 6 | a4 << 56;
953 const uint64_t M62 = UINT64_MAX >> 2;
954 const uint64_t a0 = a->
d[0], a1 = a->
d[1], a2 = a->
d[2], a3 = a->
d[3];
958 r->
v[1] = (a0 >> 62 | a1 << 2) & M62;
959 r->
v[2] = (a1 >> 60 | a2 << 4) & M62;
960 r->
v[3] = (a2 >> 58 | a3 << 6) & M62;
965 {{0x3FD25E8CD0364141LL, 0x2ABB739ABD2280EELL, -0x15LL, 0, 256}},
1002 return !(a->
d[0] & 1);
#define SECP256K1_CHECKMEM_MSAN_DEFINE(p, len)
#define SECP256K1_CHECKMEM_CHECK_VERIFY(p, len)
static SECP256K1_INLINE uint64_t secp256k1_u128_hi_u64(const secp256k1_uint128 *a)
static SECP256K1_INLINE void secp256k1_u128_from_u64(secp256k1_uint128 *r, uint64_t a)
static SECP256K1_INLINE void secp256k1_u128_rshift(secp256k1_uint128 *r, unsigned int n)
static SECP256K1_INLINE void secp256k1_u128_accum_u64(secp256k1_uint128 *r, uint64_t a)
static SECP256K1_INLINE void secp256k1_u128_accum_mul(secp256k1_uint128 *r, uint64_t a, uint64_t b)
static SECP256K1_INLINE uint64_t secp256k1_u128_to_u64(const secp256k1_uint128 *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)
#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 64 bits of (c0,c1,c2) into n, and left shift the number 64 bits.
static void secp256k1_scalar_set_b32(secp256k1_scalar *r, const unsigned char *b32, int *overflow)
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)
static const secp256k1_modinv64_modinfo secp256k1_const_modinfo_scalar
#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 void secp256k1_scalar_reduce_512(secp256k1_scalar *r, const uint64_t *l)
static void secp256k1_scalar_from_signed62(secp256k1_scalar *r, const secp256k1_modinv64_signed62 *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 64 bits of (c0,c1,c2) into n, and left shift the number 64 bits.
#define muladd(a, b)
Add a*b to the number defined by (c0,c1,c2).
static void secp256k1_scalar_to_signed62(secp256k1_modinv64_signed62 *r, const secp256k1_scalar *a)
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 SECP256K1_INLINE int secp256k1_scalar_reduce(secp256k1_scalar *r, unsigned int 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_mul_512(uint64_t *l8, const secp256k1_scalar *a, const secp256k1_scalar *b)
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 SECP256K1_INLINE void secp256k1_write_be64(unsigned char *p, uint64_t x)
#define VERIFY_CHECK(cond)
static SECP256K1_INLINE uint64_t secp256k1_read_be64(const unsigned char *p)
A scalar modulo the group order of the secp256k1 curve.