Load configuration name/value pairs from a BIO into an LHASH (legacy API).
Synopsis
Declared in <openssl/conf.h>
lhash_st_CONF_VALUE*
CONF_load_bio(
lhash_st_CONF_VALUE* conf,
BIO* bp,
long* eline);
Return Value
The configuration hash, or NULL on error.
Parameters
Name |
Description |
conf |
Existing hash to extend, or NULL to allocate a new one. |
bp |
BIO supplying OpenSSL CONF syntax. |
eline |
Optional receiver for the error line number on failure, or NULL. |
Created with MrDocs