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

Name

Description

fn

Callback receiving the cipher method, from‐name, to‐name, and arg.

arg

Opaque pointer forwarded to fn.

Created with MrDocs