[#EVP_KEYMGMT_fetch] = EVP_KEYMGMT_fetch :mrdocs: Fetch a key‐management implementation from providers. == Synopsis Declared in `<openssl/evp.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:EVP_KEYMGMT.adoc[EVP_KEYMGMT]* EVP_KEYMGMT_fetch( xref:OSSL_LIB_CTX.adoc[OSSL_LIB_CTX]* ctx, char const* algorithm, char const* properties); ---- == Return Value Fetched EVP_KEYMGMT, or NULL on error; free with EVP_KEYMGMT_free. == Parameters [cols="1,4"] |=== | Name| Description | *ctx* | Library context to search, or NULL for the default. | *algorithm* | Algorithm name such as "RSA" or "EC". | *properties* | Property query string, or NULL. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#