From: Loup Vaillant Date: Sun, 30 Jan 2022 13:48:09 +0000 (+0100) Subject: Readability nitpick X-Git-Url: https://git.codecow.com/?a=commitdiff_plain;h=65213f6eba8c5f3cb05a658395a358eb692b45d7;p=Monocypher.git Readability nitpick --- diff --git a/src/monocypher.c b/src/monocypher.c index 8fe3bdf..31f1f59 100644 --- a/src/monocypher.c +++ b/src/monocypher.c @@ -1690,9 +1690,7 @@ static void mul_add(u8 r[32], const u8 a[32], const u8 b[32], const u8 c[32]) { u32 A[8]; load32_le_buf(A, a, 8); u32 B[8]; load32_le_buf(B, b, 8); - u32 p[16]; - load32_le_buf(p, c, 8); - ZERO(p + 8, 8); + u32 p[16]; load32_le_buf(p, c, 8); ZERO(p + 8, 8); multiply(p, A, B); mod_l(r, p); WIPE_BUFFER(p);