EVP_PKEY_meth_get_verifyctx

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

NameDescription
pmethMethod table to query.
pverifyctx_initReceives the verifyctx_init callback pointer, or NULL.
pverifyctxReceives the verifyctx callback pointer, or NULL.