Invoke a callback for every name synonym associated with a cipher.
Declared in <openssl/evp.h>
int
EVP_CIPHER_names_do_all(
EVP_CIPHER const* cipher,
void(* fn)(char const*, void*),
void* data);
1 on success, or 0 on failure.
| Name | Description |
|---|---|
| cipher | Cipher algorithm to enumerate names for. |
| fn | Callback receiving each name and data. |
| data | User pointer forwarded to fn. |