Retrieve digest-context verification callbacks from an EVP_PKEY_METHOD (deprecated).
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*));
Deprecated. Use of this entity is allowed but discouraged.
| 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. |