Allocate a CONF object associated with a library context.

Synopsis

Declared in <openssl/conf.h>

CONF*
NCONF_new_ex(
    OSSL_LIB_CTX* libctx,
    CONF_METHOD* meth);

Return Value

New CONF, or NULL on allocation failure; free with NCONF_free().

Parameters

Name

Description

libctx

Library context used for subsequent CONF/module operations, or NULL for the default.

meth

Configuration method (typically NCONF_default()), or NULL for the default method.

Created with MrDocs