OPENSSL_LH_retrieve

Look up the entry matching data in an LHASH.

Synopsis

Declared in <openssl/lhash.h>

void*
OPENSSL_LH_retrieve(
    OPENSSL_LHASH* lh,
    void const* data);

Return Value

Matching element pointer, or NULL if not found.

Parameters

NameDescription
lhHash table to search.
dataKey/element used for lookup (compared via the table's compare function).