Invoke a callback for every OBJ_NAME of the given type (unsorted).
Declared in <openssl/objects.h>
void
OBJ_NAME_do_all(
int type,
void(* fn)(OBJ_NAME const*, void*),
void* arg);
| 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. |