From: Ulf Möller Date: Thu, 27 Jan 2000 19:52:58 +0000 (+0000) Subject: comment was wrong. X-Git-Tag: OpenSSL_0_9_5beta1~175 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=157be2b67db983d92d91081bee991fd636af7a39 comment was wrong. --- 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;