[#EC_KEY_METHOD_get_sign] = EC_KEY_METHOD_get_sign :mrdocs: Retrieve ECDSA signing callbacks from an EC_KEY_METHOD (deprecated). == Synopsis Declared in `<openssl/ec.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[deprecated]] void EC_KEY_METHOD_get_sign( xref:EC_KEY_METHOD.adoc[EC_KEY_METHOD] const* meth, int(** psign)(int, unsigned char const*, int, unsigned char*, unsigned int*, xref:BIGNUM.adoc[BIGNUM] const*, xref:BIGNUM.adoc[BIGNUM] const*, xref:EC_KEY.adoc[EC_KEY]*), int(** psign_setup)(xref:EC_KEY.adoc[EC_KEY]*, xref:BN_CTX.adoc[BN_CTX]*, xref:BIGNUM.adoc[BIGNUM]**, xref:BIGNUM.adoc[BIGNUM]**), xref:ECDSA_SIG.adoc[ECDSA_SIG]*(** psign_sig)(unsigned char const*, int, xref:BIGNUM.adoc[BIGNUM] const*, xref:BIGNUM.adoc[BIGNUM] const*, xref:EC_KEY.adoc[EC_KEY]*)); ---- [WARNING] ==== https://en.cppreference.com/cpp/language/attributes/deprecated[Deprecated^]. Use of this entity is allowed but discouraged. ==== == Parameters [cols="1,4"] |=== | Name| Description | *meth* | Method table to query. | *psign* | Receives the ECDSA_sign‐style callback, or NULL to skip. | *psign_setup* | Receives the optional sign_setup callback, or NULL to skip. | *psign_sig* | Receives the callback that returns an ECDSA_SIG, or NULL to skip. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#