From 2233bed1cbf138fb670d4000991d12327600b9d4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bodo=20M=C3=B6ller?= Date: Thu, 27 Jan 2000 14:31:31 +0000 Subject: [PATCH] typo in a comment --- crypto/bn/bn_mont.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/bn/bn_mont.c b/crypto/bn/bn_mont.c index cdf7ca191a..aaf57da764 100644 --- a/crypto/bn/bn_mont.c +++ b/crypto/bn/bn_mont.c @@ -305,7 +305,7 @@ int BN_MONT_CTX_set(BN_MONT_CTX *mont, const BIGNUM *mod, BN_CTX *ctx) else /* if N mod word size == 1 */ BN_set_word(&Ri,BN_MASK2); /* Ri-- (mod word size) */ BN_div(&Ri,NULL,&Ri,&tmod,ctx); /* Ni = (R*Ri-1)/N, - * keep only list significant word: */ + * keep only least significant word: */ mont->n0=Ri.d[0]; BN_free(&Ri); } -- 2.25.1