[#EVP_PKEY_CTX_get_ecdh_kdf_md] = EVP_PKEY_CTX_get_ecdh_kdf_md :mrdocs: Get the message digest used for the ECDH X9.63 KDF on a key context. == Synopsis Declared in `<openssl/ec.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int EVP_PKEY_CTX_get_ecdh_kdf_md( xref:EVP_PKEY_CTX.adoc[EVP_PKEY_CTX]* ctx, xref:EVP_MD.adoc[EVP_MD] const** md); ---- == Return Value 1 on success, or a non‐positive value on failure. == Parameters [cols="1,4"] |=== | Name| Description | *ctx* | Key‐exchange context configured for ECDH with a KDF. | *md* | Receives a pointer to the digest method (do not free). |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#