[#EVP_MD_meth_get_copy] = EVP_MD_meth_get_copy :mrdocs: Return the context‐copy callback from a custom EVP_MD method (deprecated). == Synopsis Declared in `<openssl/evp.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[deprecated]] int(* EVP_MD_meth_get_copy(xref:EVP_MD.adoc[EVP_MD] const* md))(xref:EVP_MD_CTX.adoc[EVP_MD_CTX]*, xref:EVP_MD_CTX.adoc[EVP_MD_CTX] const*); ---- [WARNING] ==== https://en.cppreference.com/cpp/language/attributes/deprecated[Deprecated^]. Use of this entity is allowed but discouraged. ==== == Return Value Pointer to the copy callback, or NULL if unset. == Parameters [cols="1,4"] |=== | Name| Description | *md* | Digest method to query. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#