summaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn_mont.c
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2000-01-27 14:31:31 +0000
committerBodo Möller <bodo@openssl.org>2000-01-27 14:31:31 +0000
commit2233bed1cbf138fb670d4000991d12327600b9d4 (patch)
tree33b89254ba31f5604df0f4059c629eae4cb62f76 /crypto/bn/bn_mont.c
parentec1258dd446e39649f846ee870721ca4dfe56cff (diff)
typo in a comment
Diffstat (limited to 'crypto/bn/bn_mont.c')
-rw-r--r--crypto/bn/bn_mont.c2
1 files changed, 1 insertions, 1 deletions
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);
}