mirror of
https://github.com/openssl/openssl.git
synced 2025-03-31 20:10:45 +08:00
Return smaller of ret and f.
PR#3418.
This commit is contained in:
parent
ced3d9158a
commit
fdea4fff8f
@ -494,7 +494,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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user