mirror of
https://github.com/openssl/openssl.git
synced 2024-11-27 05:21:51 +08:00
Actually comment out the parts of BN_MOD_MUL_WORD that I inteded to
comment out in the previous commit
This commit is contained in:
parent
e958c5afe7
commit
fc57ebc057
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user