EVP_CIPHER_do_all

Invoke fn for every cipher name mapping in the legacy EVP cipher table.

Synopsis

Declared in <openssl/evp.h>

void
EVP_CIPHER_do_all(
    void(* fn)(EVP_CIPHER const*, char const*, char const*, void*),
    void* arg);

Parameters

NameDescription
fnCallback receiving the cipher method, from-name, to-name, and arg.
argOpaque pointer forwarded to fn.