EVP_ASYM_CIPHER_names_do_all

Call fn for each synonymous name of an asymmetric-cipher algorithm implementation.

Synopsis

Declared in <openssl/evp.h>

int
EVP_ASYM_CIPHER_names_do_all(
    EVP_ASYM_CIPHER const* cipher,
    void(* fn)(char const*, void*),
    void* data);

Return Value

1 on success, or 0 on failure.

Parameters

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