Invoke a callback for every OBJ_NAME of the given type in sorted name order.

Synopsis

Declared in <openssl/objects.h>

void
OBJ_NAME_do_all_sorted(
    int type,
    void(* fn)(OBJ_NAME const*, void*),
    void* arg);

Parameters

Name

Description

type

Name class such as OBJ_NAME_TYPE_CIPHER_METH (or ‐1 for every class).

fn

Callback receiving each OBJ_NAME entry and arg.

arg

User pointer passed through to fn.

Created with MrDocs