Call fn for each synonymous name of a random-number algorithm implementation.
Declared in <openssl/evp.h>
int
EVP_RAND_names_do_all(
EVP_RAND const* rand,
void(* fn)(char const*, void*),
void* data);
1 on success, or 0 on failure.
| Name | Description |
|---|---|
| rand | RAND method whose names are enumerated. |
| fn | Callback receiving each name and data. |
| data | Opaque pointer forwarded to fn. |