Return smaller of ret and f.

PR#3418.
(cherry picked from commit fdea4fff8f)
This commit is contained in:
Alan Hryngle 2014-07-05 22:24:03 +01:00 committed by Dr. Stephen Henson
parent 1a0498769f
commit 7faa66433f

View file

@ -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;