ENGINE_get_pkey_asn1_meth_str

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

NameDescription
eENGINE whose ASN.1 pkey methods are searched.
strPEM algorithm name to match (case-insensitive).
lenLength of str in bytes, or -1 to use strlen(str).