Retrieve the ctrl / ctrl_str callbacks from an EVP_PKEY_METHOD (deprecated).
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*));
Deprecated. Use of this entity is allowed but discouraged.
| Name | Description |
|---|---|
| pmeth | Method table to query. |
| pctrl | Optional destination for the integer ctrl callback, or NULL. |
| pctrl_str | Optional destination for the string ctrl callback, or NULL. |