Call fn for each synonymous name of an asymmetric-cipher algorithm implementation.
Declared in <openssl/evp.h>
int
EVP_ASYM_CIPHER_names_do_all(
EVP_ASYM_CIPHER const* cipher,
void(* fn)(char const*, void*),
void* data);
1 on success, or 0 on failure.
| Name | Description |
|---|---|
| cipher | Asymmetric cipher method whose names are enumerated. |
| fn | Callback receiving each name and data. |
| data | Opaque pointer forwarded to fn. |