CONF_get_string

Look up a string value in a legacy CONF LHASH.

Synopsis

Declared in <openssl/conf.h>

char*
CONF_get_string(
    lhash_st_CONF_VALUE* conf,
    char const* group,
    char const* name);

Return Value

Internal value string (do not free), or NULL if not found.

Parameters

NameDescription
confConfiguration hash from CONF_load*().
groupSection name, or NULL for the default section.
nameKey name within the section.