Skip to content

Commit 740528c

Browse files
committed
scalar: use newly introduced secp256k1_{read,write}_be64 helpers (4x64 impl.)
1 parent 67214f5 commit 740528c

File tree

2 files changed

+32
-8
lines changed

2 files changed

+32
-8
lines changed

src/scalar_4x64_impl.h

+8-8
Original file line numberDiff line numberDiff line change
@@ -133,21 +133,21 @@ static void secp256k1_scalar_cadd_bit(secp256k1_scalar *r, unsigned int bit, int
133133

134134
static void secp256k1_scalar_set_b32(secp256k1_scalar *r, const unsigned char *b32, int *overflow) {
135135
int over;
136-
r->d[0] = ((uint64_t)secp256k1_read_be32(&b32[24]) << 32) | (uint64_t)secp256k1_read_be32(&b32[28]);
137-
r->d[1] = ((uint64_t)secp256k1_read_be32(&b32[16]) << 32) | (uint64_t)secp256k1_read_be32(&b32[20]);
138-
r->d[2] = ((uint64_t)secp256k1_read_be32(&b32[8]) << 32) | (uint64_t)secp256k1_read_be32(&b32[12]);
139-
r->d[3] = ((uint64_t)secp256k1_read_be32(&b32[0]) << 32) | (uint64_t)secp256k1_read_be32(&b32[4]);
136+
r->d[0] = secp256k1_read_be64(&b32[24]);
137+
r->d[1] = secp256k1_read_be64(&b32[16]);
138+
r->d[2] = secp256k1_read_be64(&b32[8]);
139+
r->d[3] = secp256k1_read_be64(&b32[0]);
140140
over = secp256k1_scalar_reduce(r, secp256k1_scalar_check_overflow(r));
141141
if (overflow) {
142142
*overflow = over;
143143
}
144144
}
145145

146146
static void secp256k1_scalar_get_b32(unsigned char *bin, const secp256k1_scalar* a) {
147-
secp256k1_write_be32(&bin[0], a->d[3] >> 32); secp256k1_write_be32(&bin[4], a->d[3]);
148-
secp256k1_write_be32(&bin[8], a->d[2] >> 32); secp256k1_write_be32(&bin[12], a->d[2]);
149-
secp256k1_write_be32(&bin[16], a->d[1] >> 32); secp256k1_write_be32(&bin[20], a->d[1]);
150-
secp256k1_write_be32(&bin[24], a->d[0] >> 32); secp256k1_write_be32(&bin[28], a->d[0]);
147+
secp256k1_write_be64(&bin[0], a->d[3]);
148+
secp256k1_write_be64(&bin[8], a->d[2]);
149+
secp256k1_write_be64(&bin[16], a->d[1]);
150+
secp256k1_write_be64(&bin[24], a->d[0]);
151151
}
152152

153153
SECP256K1_INLINE static int secp256k1_scalar_is_zero(const secp256k1_scalar *a) {

src/util.h

+24
Original file line numberDiff line numberDiff line change
@@ -353,4 +353,28 @@ SECP256K1_INLINE static void secp256k1_write_be32(unsigned char* p, uint32_t x)
353353
p[0] = x >> 24;
354354
}
355355

356+
/* Read a uint64_t in big endian */
357+
SECP256K1_INLINE static uint64_t secp256k1_read_be64(const unsigned char* p) {
358+
return (uint64_t)p[0] << 56 |
359+
(uint64_t)p[1] << 48 |
360+
(uint64_t)p[2] << 40 |
361+
(uint64_t)p[3] << 32 |
362+
(uint64_t)p[4] << 24 |
363+
(uint64_t)p[5] << 16 |
364+
(uint64_t)p[6] << 8 |
365+
(uint64_t)p[7];
366+
}
367+
368+
/* Write a uint64_t in big endian */
369+
SECP256K1_INLINE static void secp256k1_write_be64(unsigned char* p, uint64_t x) {
370+
p[7] = x;
371+
p[6] = x >> 8;
372+
p[5] = x >> 16;
373+
p[4] = x >> 24;
374+
p[3] = x >> 32;
375+
p[2] = x >> 40;
376+
p[1] = x >> 48;
377+
p[0] = x >> 56;
378+
}
379+
356380
#endif /* SECP256K1_UTIL_H */

0 commit comments

Comments
 (0)