Invoke a callback for every OBJ_NAME of the given type (unsorted).

Synopsis

Declared in <openssl/objects.h>

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

Parameters

Name

Description

type

Name table type to iterate (for example OBJ_NAME_TYPE_MD_METH).

fn

Callback receiving each OBJ_NAME entry and arg.

arg

User pointer passed through to fn.

Created with MrDocs