EVP_MD_do_all

Invoke a callback for every digest name in the legacy algorithm table.

Synopsis

Declared in <openssl/evp.h>

void
EVP_MD_do_all(
    void(* fn)(EVP_MD const*, char const*, char const*, void*),
    void* arg);

Parameters

NameDescription
fnCallback receiving the EVP_MD (may be NULL for aliases), the registered name, any alias target, and arg.
argUser pointer passed through to fn.