From: Dr. Stephen Henson Date: Thu, 13 Jul 2017 14:51:27 +0000 (+0100) Subject: Typo: should check mgf1md X-Git-Tag: OpenSSL_1_1_1-pre1~1011 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=8a3cde7dfa1b25dbe6968ecf6c616ac517c84700;p=oweals%2Fopenssl.git Typo: should check mgf1md Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/3920) --- diff --git a/crypto/rsa/rsa_pmeth.c b/crypto/rsa/rsa_pmeth.c index 4ba713910c..bd7b47fc4f 100644 --- a/crypto/rsa/rsa_pmeth.c +++ b/crypto/rsa/rsa_pmeth.c @@ -504,7 +504,7 @@ static int pkey_rsa_ctrl(EVP_PKEY_CTX *ctx, int type, int p1, void *p2) *(const EVP_MD **)p2 = rctx->md; } else { if (rsa_pss_restricted(rctx)) { - if (EVP_MD_type(rctx->md) == EVP_MD_type(p2)) + if (EVP_MD_type(rctx->mgf1md) == EVP_MD_type(p2)) return 1; RSAerr(RSA_F_PKEY_RSA_CTRL, RSA_R_MGF1_DIGEST_NOT_ALLOWED); return 0;