projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1a04987
)
Return smaller of ret and f.
author
Alan Hryngle
<alan.hryngle@yahoo.com>
Sat, 5 Jul 2014 21:24:03 +0000
(22:24 +0100)
committer
Dr. Stephen Henson
<steve@openssl.org>
Sat, 5 Jul 2014 21:39:16 +0000
(22:39 +0100)
PR#3418.
(cherry picked from commit
fdea4fff8fb058be928980600b24cf4c62ef3630
)
crypto/rsa/rsa_eay.c
patch
|
blob
|
history
diff --git
a/crypto/rsa/rsa_eay.c
b/crypto/rsa/rsa_eay.c
index d477f08c4cace48c50432f2563ce9a9de7735ab6..203d702321011aefe219d1331817be6a52ce01a3 100644
(file)
--- a/
crypto/rsa/rsa_eay.c
+++ b/
crypto/rsa/rsa_eay.c
@@
-457,7
+457,7
@@
static int RSA_eay_private_encrypt(int flen, const unsigned char *from,
if (padding == RSA_X931_PADDING)
{
BN_sub(f, rsa->n, ret);
- if (BN_cmp(ret, f))
+ if (BN_cmp(ret, f)
> 0
)
res = f;
else
res = ret;