EVP_PKEY_meth_get_signctx

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

NameDescription
pmethMethod table to query.
psignctx_initReceives the signctx_init callback pointer, or NULL.
psignctxReceives the signctx callback pointer, or NULL.