[#EVP_PKEY_get1_DSA] = EVP_PKEY_get1_DSA :mrdocs: Return a new reference to the DSA key held by `pkey` (deprecated). == Synopsis Declared in `<openssl/evp.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- [[deprecated]] xref:dsa_st.adoc[dsa_st]* EVP_PKEY_get1_DSA(xref:EVP_PKEY.adoc[EVP_PKEY]* pkey); ---- [WARNING] ==== https://en.cppreference.com/cpp/language/attributes/deprecated[Deprecated^]. Use of this entity is allowed but discouraged. ==== == Return Value DSA pointer with an incremented reference count (caller frees with DSA_free()), or NULL on error. == Parameters [cols="1,4"] |=== | Name| Description | *pkey* | Key that must hold a DSA key. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#