From: Tobias Nießen Date: Fri, 18 Oct 2019 18:44:49 +0000 (+0200) Subject: Allow EVP_PKEY_get0_RSA for RSA-PSS keys X-Git-Tag: openssl-3.0.0-alpha1~1079 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=465a58b117d5a85623f3998d6fbf2fe8712a5604 Allow EVP_PKEY_get0_RSA for RSA-PSS keys RSA-PSS keys use the same internal structure as RSA keys but do not allow accessing it through EVP_PKEY_get0_RSA. This commit changes that behavior. Reviewed-by: Tomas Mraz Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/10217) --- diff --git a/crypto/evp/p_lib.c b/crypto/evp/p_lib.c index 04530063d8..0e93786c82 100644 --- a/crypto/evp/p_lib.c +++ b/crypto/evp/p_lib.c @@ -493,7 +493,7 @@ int EVP_PKEY_set1_RSA(EVP_PKEY *pkey, RSA *key) RSA *EVP_PKEY_get0_RSA(const EVP_PKEY *pkey) { - if (pkey->type != EVP_PKEY_RSA) { + if (pkey->type != EVP_PKEY_RSA && pkey->type != EVP_PKEY_RSA_PSS) { EVPerr(EVP_F_EVP_PKEY_GET0_RSA, EVP_R_EXPECTING_AN_RSA_KEY); return NULL; }