[#EVP_PKEY_get0_DH] = EVP_PKEY_get0_DH :mrdocs: Return the DH key referenced by `pkey` without incrementing its reference count (deprecated). == Synopsis Declared in `<openssl/evp.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[deprecated]] xref:dh_st.adoc[dh_st] const* EVP_PKEY_get0_DH(xref:EVP_PKEY.adoc[EVP_PKEY] const* pkey); ---- [WARNING] ==== https://en.cppreference.com/cpp/language/attributes/deprecated[Deprecated^]. Use of this entity is allowed but discouraged. ==== == Return Value Internal DH pointer, or NULL if `pkey` is not a DH key; do not free the result. == Parameters [cols="1,4"] |=== | Name| Description | *pkey* | Key that must hold a DH key. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#