EVP_PKEY_meth_get_ctrl

Retrieve the ctrl / ctrl_str callbacks from an EVP_PKEY_METHOD (deprecated).

Synopsis

Declared in <openssl/evp.h>

[[deprecated]]
void
EVP_PKEY_meth_get_ctrl(
    EVP_PKEY_METHOD const* pmeth,
    int(** pctrl)(EVP_PKEY_CTX*, int, int, void*),
    int(** pctrl_str)(EVP_PKEY_CTX*, char const*, char const*));

WARNING

Deprecated. Use of this entity is allowed but discouraged.

Parameters

NameDescription
pmethMethod table to query.
pctrlOptional destination for the integer ctrl callback, or NULL.
pctrl_strOptional destination for the string ctrl callback, or NULL.