This commit is contained in:
Frank Denis
2020-05-02 17:42:25 +02:00
parent 300f12c6a3
commit 809a9f9d7e
2 changed files with 2 additions and 2 deletions
@@ -979,7 +979,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;
@@ -490,7 +490,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;