From: Mansour Ahmadi Date: Tue, 11 Dec 2018 22:26:50 +0000 (-0500) Subject: fix inconsistent flen check in rsa_pk1 and rsa_oaep X-Git-Tag: openssl-3.0.0-alpha1~2695 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=4fea7005c3d08ed0d575bdea5082b7b0ce355237;p=oweals%2Fopenssl.git fix inconsistent flen check in rsa_pk1 and rsa_oaep Fixes #7117 Reviewed-by: Kurt Roeckx Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/7880) --- diff --git a/crypto/rsa/rsa_pk1.c b/crypto/rsa/rsa_pk1.c index 13f1d827be..cb7518e1d2 100644 --- a/crypto/rsa/rsa_pk1.c +++ b/crypto/rsa/rsa_pk1.c @@ -161,7 +161,7 @@ int RSA_padding_check_PKCS1_type_2(unsigned char *to, int tlen, unsigned int good, found_zero_byte, mask; int zero_index = 0, msg_index, mlen = -1; - if (tlen < 0 || flen < 0) + if (tlen <= 0 || flen <= 0) return -1; /*