summaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn_exp.c
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2000-06-23 08:10:28 +0000
committerBodo Möller <bodo@openssl.org>2000-06-23 08:10:28 +0000
commitfc57ebc05722f32a437aff2095439c6b624b99ec (patch)
treeb0de13ca083b3276a777de8ae607f7d5cda77c24 /crypto/bn/bn_exp.c
parente958c5afe7a7899947812c55cb0316fa40850426 (diff)
Actually comment out the parts of BN_MOD_MUL_WORD that I inteded to
comment out in the previous commit
Diffstat (limited to 'crypto/bn/bn_exp.c')
-rw-r--r--crypto/bn/bn_exp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bn/bn_exp.c b/crypto/bn/bn_exp.c
index e3314f8817..8117323766 100644
--- a/crypto/bn/bn_exp.c
+++ b/crypto/bn/bn_exp.c
@@ -664,7 +664,7 @@ int BN_mod_exp_mont_word(BIGNUM *rr, BN_ULONG a, const BIGNUM *p,
BIGNUM *swap_tmp;
#define BN_MOD_MUL_WORD(r, w, m) \
(BN_mul_word(r, (w)) && \
- (BN_ucmp(r, (m)) < 0 ? 1 : \
+ (/* BN_ucmp(r, (m)) < 0 ? 1 :*/ \
(BN_mod(t, r, m, ctx) && (swap_tmp = r, r = t, t = swap_tmp, 1))))
/* BN_MOD_MUL_WORD is only used with 'w' large,
* so the BN_ucmp test is probably more overhead