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
Name |
Description |
conf |
Configuration to query. |
group |
Section name, or NULL for the default section. |
name |
Key name within the section. |
Created with MrDocs