Retrieve parameter‐generation callbacks from an EVP_PKEY_METHOD (deprecated).
Synopsis
Declared in <openssl/evp.h>
[[deprecated]]
void
EVP_PKEY_meth_get_paramgen(
EVP_PKEY_METHOD const* pmeth,
int(** pparamgen_init)(EVP_PKEY_CTX*),
int(** pparamgen)(EVP_PKEY_CTX*, EVP_PKEY*));
|
Warning
|
Deprecated. Use of this entity is allowed but discouraged. |
Parameters
Name |
Description |
pmeth |
Method table to query. |
pparamgen_init |
Receives the paramgen_init callback pointer, or NULL. |
pparamgen |
Receives the paramgen callback pointer, or NULL. |
Created with MrDocs