This commit is contained in:
Frank Denis 2020-05-02 17:42:25 +02:00
parent 6d5cf12fca
commit dcf78d77be
2 changed files with 2 additions and 2 deletions

View File

@ -958,7 +958,7 @@ fe25519_sq2(fe25519 h, const fe25519 f)
h[9] = (int32_t) h9;
}
static void
static inline void
fe25519_mul32(fe25519 h, const fe25519 f, uint32_t n)
{
int64_t sn = (int64_t) n;

View File

@ -479,7 +479,7 @@ fe25519_sq2(fe25519 h, const fe25519 f)
h[4] = r04;
}
static void
static inline void
fe25519_mul32(fe25519 h, const fe25519 f, uint32_t n)
{
const uint64_t mask = 0x7ffffffffffffULL;