mirror of
https://github.com/openssl/openssl.git
synced 2025-02-17 14:32:04 +08:00
Fix no-ec
Recent SM2 related changes were not properly guarded with OPENSSL_NO_EC Reviewed-by: Bernd Edlinger <bernd.edlinger@hotmail.de> (Merged from https://github.com/openssl/openssl/pull/11029)
This commit is contained in:
parent
34675b2ba9
commit
ad5b71be73
@ -403,12 +403,14 @@ int EVP_PKEY_assign(EVP_PKEY *pkey, int type, void *key)
|
||||
{
|
||||
int alias = type;
|
||||
|
||||
#ifndef OPENSSL_NO_EC
|
||||
if (EVP_PKEY_type(type) == EVP_PKEY_EC) {
|
||||
const EC_GROUP *group = EC_KEY_get0_group(key);
|
||||
|
||||
if (group != NULL && EC_GROUP_get_curve_name(group) == NID_sm2)
|
||||
alias = EVP_PKEY_SM2;
|
||||
}
|
||||
#endif
|
||||
|
||||
if (pkey == NULL || !EVP_PKEY_set_type(pkey, type))
|
||||
return 0;
|
||||
|
@ -44,12 +44,14 @@ static EVP_MD_CTX *make_id_ctx(EVP_PKEY *r, ASN1_OCTET_STRING *id)
|
||||
goto error;
|
||||
}
|
||||
|
||||
#ifndef OPENSSL_NO_EC
|
||||
if (id != NULL) {
|
||||
if (EVP_PKEY_CTX_set1_id(pctx, id->data, id->length) <= 0) {
|
||||
X509err(0, ERR_R_MALLOC_FAILURE);
|
||||
goto error;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
EVP_MD_CTX_set_pkey_ctx(ctx, pctx);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user