Retrieve digest‐context signing callbacks from an EVP_PKEY_METHOD (deprecated).
Synopsis
Declared in <openssl/evp.h>
[[deprecated]]
void
EVP_PKEY_meth_get_signctx(
EVP_PKEY_METHOD const* pmeth,
int(** psignctx_init)(EVP_PKEY_CTX*, EVP_MD_CTX*),
int(** psignctx)(EVP_PKEY_CTX*, unsigned char*, size_t*, EVP_MD_CTX*));
|
Warning
|
Deprecated. Use of this entity is allowed but discouraged. |
Parameters
Name |
Description |
pmeth |
Method table to query. |
psignctx_init |
Receives the signctx_init callback pointer, or NULL. |
psignctx |
Receives the signctx callback pointer, or NULL. |
Created with MrDocs