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