From e630279487dbdfefae14ceb962472531702cb026 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Vejpustek?= Date: Fri, 12 Jun 2020 14:08:36 +0200 Subject: [PATCH] crypto: fix comment --- crypto/bignum.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/bignum.c b/crypto/bignum.c index 8336aa7e9f..0469b4116e 100644 --- a/crypto/bignum.c +++ b/crypto/bignum.c @@ -286,7 +286,7 @@ void bn_cmov(bignum256 *res, volatile uint32_t cond, const bignum256 *truecase, // else (x if x > prime else x + prime) // Assumes x is normalized and partly reduced // Assumes cond is either 1 or 0 -// Guarantees x is normalized and partly reduced +// Guarantees x is normalized // Assumes prime is normalized and // 0 < prime < 2**260 == 2**(BITS_PER_LIMB * LIMBS - 1) void bn_cnegate(volatile uint32_t cond, bignum256 *x, const bignum256 *prime) {