summaryrefslogtreecommitdiffstats
path: root/crypto/rsa
diff options
context:
space:
mode:
authorAlan Hryngle <alan.hryngle@yahoo.com>2014-07-05 22:24:03 +0100
committerDr. Stephen Henson <steve@openssl.org>2014-07-05 22:38:17 +0100
commitff5b11f547977d0419f074587bbc6417e65981f3 (patch)
tree248606741564f849f12caf74e26954e199daa66b /crypto/rsa
parent8358302d47c8b6e0680d91ffee11302331f17a69 (diff)
Return smaller of ret and f.
PR#3418. (cherry picked from commit fdea4fff8fb058be928980600b24cf4c62ef3630)
Diffstat (limited to 'crypto/rsa')
-rw-r--r--crypto/rsa/rsa_eay.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/rsa/rsa_eay.c b/crypto/rsa/rsa_eay.c
index 88ee2cb557..aa810459a1 100644
--- a/crypto/rsa/rsa_eay.c
+++ b/crypto/rsa/rsa_eay.c
@@ -459,7 +459,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;