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
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. |
Created with MrDocs