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

Name

Description

fn

Callback receiving the EVP_MD (may be NULL for aliases), the registered name, any alias target, and arg.

arg

User pointer passed through to fn.

Created with MrDocs