EVP_RAND_names_do_all

Call fn for each synonymous name of a random-number algorithm implementation.

Synopsis

Declared in <openssl/evp.h>

int
EVP_RAND_names_do_all(
    EVP_RAND const* rand,
    void(* fn)(char const*, void*),
    void* data);

Return Value

1 on success, or 0 on failure.

Parameters

NameDescription
randRAND method whose names are enumerated.
fnCallback receiving each name and data.
dataOpaque pointer forwarded to fn.