projects
/
openssl.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Use BN_rand_range().
[openssl.git]
/
crypto
/
rsa
/
rsa_lib.c
diff --git
a/crypto/rsa/rsa_lib.c
b/crypto/rsa/rsa_lib.c
index
d09dbd4
..
d3a602f
100644
(file)
--- a/
crypto/rsa/rsa_lib.c
+++ b/
crypto/rsa/rsa_lib.c
@@
-325,7
+325,7
@@
int RSA_blinding_on(RSA *rsa, BN_CTX *p_ctx)
BN_CTX_start(ctx);
A = BN_CTX_get(ctx);
- if (!BN_rand
(A,BN_num_bits(rsa->n)-1,1,0
)) goto err;
+ if (!BN_rand
_range(A,rsa->n
)) goto err;
if ((Ai=BN_mod_inverse(NULL,A,rsa->n,ctx)) == NULL) goto err;
if (!ENGINE_get_RSA(rsa->engine)->bn_mod_exp(A,A,