Find an EVP_PKEY_ASN1_METHOD by PEM/string name across ENGINEs (deprecated).

Synopsis

Declared in <openssl/engine.h>

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

Deprecated. Use of this entity is allowed but discouraged.

Return Value

Matching ASN.1 method, or NULL if none is found.

Parameters

Name

Description

pe

Optional address that receives the ENGINE that provided the method (structurally referenced), or NULL.

str

Method name bytes (not necessarily NUL‐terminated).

len

Length of str in bytes.

Created with MrDocs