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