Look up an ENGINE's EVP_PKEY_ASN1_METHOD by PEM string name.

Synopsis

Declared in <openssl/engine.h>

[[deprecated]]
EVP_PKEY_ASN1_METHOD const*
ENGINE_get_pkey_asn1_meth_str(
    ENGINE* e,
    char const* str,
    int len);
Warning

Deprecated. Use of this entity is allowed but discouraged.

Return Value

Matching EVP_PKEY_ASN1_METHOD, or NULL if not found.

Parameters

Name

Description

e

ENGINE whose ASN.1 pkey methods are searched.

str

PEM algorithm name to match (case‐insensitive).

len

Length of str in bytes, or ‐1 to use strlen(str).

Created with MrDocs