NCONF_get_string

Look up a string value in a CONF object.

Synopsis

Declared in <openssl/conf.h>

char*
NCONF_get_string(
    CONF const* conf,
    char const* group,
    char const* name);

Return Value

Pointer to the internal value string, or NULL if not found; do not free.

Parameters

NameDescription
confConfiguration to query.
groupSection name, or NULL for the default section.
nameKey name within the section.