OSSL_PARAM_locate

Find the first OSSL_PARAM in p whose key matches key.

Synopsis

Declared in <openssl/params.h>

OSSL_PARAM*
OSSL_PARAM_locate(
    OSSL_PARAM* p,
    char const* key);

Return Value

Pointer to the matching element, or NULL if not found.

Parameters

NameDescription
pParameter array terminated by OSSL_PARAM_construct_end(), or NULL.
keyParameter name to search for.