[#EVP_ASYM_CIPHER_fetch] = EVP_ASYM_CIPHER_fetch :mrdocs: Fetch an asymmetric cipher (encrypt/decrypt) algorithm from providers. == Synopsis Declared in `<openssl/evp.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:EVP_ASYM_CIPHER.adoc[EVP_ASYM_CIPHER]* EVP_ASYM_CIPHER_fetch( xref:OSSL_LIB_CTX.adoc[OSSL_LIB_CTX]* ctx, char const* algorithm, char const* properties); ---- == Return Value Fetched EVP_ASYM_CIPHER (free with EVP_ASYM_CIPHER_free()), or NULL on failure. == Parameters [cols="1,4"] |=== | Name| Description | *ctx* | Library context to search, or NULL for the default. | *algorithm* | Algorithm name (for example "RSA"). | *properties* | Optional property query string, or NULL. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#