mirror of
https://github.com/openssl/openssl.git
synced 2025-04-06 20:20:50 +08:00
EVP: Downgrade EVP_PKEYs in EVP_PKEY2PKCS8()
EVP_PKEY2PKCS8() relies on the presence of an EVP_PKEY_ASN1_METHOD, which requires "downgrading" the EVP_PKEY to have a legacy internal key. Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/12587)
This commit is contained in:
parent
7620d89c3f
commit
b527564884
@ -77,6 +77,11 @@ PKCS8_PRIV_KEY_INFO *EVP_PKEY2PKCS8(const EVP_PKEY *pkey)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
/* Force a key downgrade if that's possible */
|
||||
/* TODO(3.0) Is there a better way for provider-native keys? */
|
||||
if (EVP_PKEY_get0(pkey) == NULL)
|
||||
return NULL;
|
||||
|
||||
if (pkey->ameth) {
|
||||
if (pkey->ameth->priv_encode) {
|
||||
if (!pkey->ameth->priv_encode(p8, pkey)) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user