aboutsummaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>2000-01-27 19:52:58 +0000
committerUlf Möller <ulf@openssl.org>2000-01-27 19:52:58 +0000
commit157be2b67db983d92d91081bee991fd636af7a39 (patch)
treeaf2c8f3470ffd7dd123269bc6bd0c2923fc88a95 /crypto
parent5d6e31dbe60e008f0d0659b759542e65c2e6a3a8 (diff)
downloadopenssl-157be2b67db983d92d91081bee991fd636af7a39.tar.gz
comment was wrong.
Diffstat (limited to 'crypto')
-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 aaf57da764..dd691112c2 100644
--- a/crypto/bn/bn_mont.c
+++ b/crypto/bn/bn_mont.c
@@ -288,7 +288,7 @@ int BN_MONT_CTX_set(BN_MONT_CTX *mont, const BIGNUM *mod, BN_CTX *ctx)
mont->ri=(BN_num_bits(mod)+(BN_BITS2-1))/BN_BITS2*BN_BITS2;
BN_zero(R);
- BN_set_bit(R,BN_BITS2); /* R = 2^ri */
+ BN_set_bit(R,BN_BITS2); /* R */
buf[0]=mod->d[0]; /* tmod = N mod word size */
buf[1]=0;