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