Look up the entry matching data in an LHASH.
Declared in <openssl/lhash.h>
void*
OPENSSL_LH_retrieve(
OPENSSL_LHASH* lh,
void const* data);
Matching element pointer, or NULL if not found.
| Name | Description |
|---|---|
| lh | Hash table to search. |
| data | Key/element used for lookup (compared via the table's compare function). |