Return smaller of ret and f.
PR#3418. (cherry picked from commit fdea4fff8fb058be928980600b24cf4c62ef3630)
This commit is contained in:
parent
c923132e9d
commit
675b1c2fce
@ -459,7 +459,7 @@ static int RSA_eay_private_encrypt(int flen, const unsigned char *from,
|
|||||||
if (padding == RSA_X931_PADDING)
|
if (padding == RSA_X931_PADDING)
|
||||||
{
|
{
|
||||||
BN_sub(f, rsa->n, ret);
|
BN_sub(f, rsa->n, ret);
|
||||||
if (BN_cmp(ret, f))
|
if (BN_cmp(ret, f) > 0)
|
||||||
res = f;
|
res = f;
|
||||||
else
|
else
|
||||||
res = ret;
|
res = ret;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user