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