Load configuration data from a BIO into a CONF object.

Synopsis

Declared in <openssl/conf.h>

int
NCONF_load_bio(
    CONF* conf,
    BIO* bp,
    long* eline);

Return Value

1 on success, or 0 on failure.

Parameters

Name

Description

conf

Destination CONF (typically from NCONF_new()).

bp

BIO supplying OpenSSL CONF syntax.

eline

Optional receiver for the error line number on failure, or NULL.

Created with MrDocs