Retrieve digest‐context verification callbacks from an EVP_PKEY_METHOD (deprecated).

Synopsis

Declared in <openssl/evp.h>

[[deprecated]]
void
EVP_PKEY_meth_get_verifyctx(
    EVP_PKEY_METHOD const* pmeth,
    int(** pverifyctx_init)(EVP_PKEY_CTX*, EVP_MD_CTX*),
    int(** pverifyctx)(EVP_PKEY_CTX*, unsigned char const*, int, EVP_MD_CTX*));
Warning

Deprecated. Use of this entity is allowed but discouraged.

Parameters

Name

Description

pmeth

Method table to query.

pverifyctx_init

Receives the verifyctx_init callback pointer, or NULL.

pverifyctx

Receives the verifyctx callback pointer, or NULL.

Created with MrDocs