[#EVP_PKEY_meth_get_signctx] = EVP_PKEY_meth_get_signctx :mrdocs: Retrieve digest‐context signing callbacks from an EVP_PKEY_METHOD (deprecated). == Synopsis Declared in `<openssl/evp.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[deprecated]] void EVP_PKEY_meth_get_signctx( xref:EVP_PKEY_METHOD.adoc[EVP_PKEY_METHOD] const* pmeth, int(** psignctx_init)(xref:EVP_PKEY_CTX.adoc[EVP_PKEY_CTX]*, xref:EVP_MD_CTX.adoc[EVP_MD_CTX]*), int(** psignctx)(xref:EVP_PKEY_CTX.adoc[EVP_PKEY_CTX]*, unsigned char*, size_t*, xref:EVP_MD_CTX.adoc[EVP_MD_CTX]*)); ---- [WARNING] ==== https://en.cppreference.com/cpp/language/attributes/deprecated[Deprecated^]. Use of this entity is allowed but discouraged. ==== == Parameters [cols="1,4"] |=== | 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. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#