[#NCONF_new_ex] = NCONF_new_ex :mrdocs: Allocate a CONF object associated with a library context. == Synopsis Declared in `<openssl/conf.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:CONF.adoc[CONF]* NCONF_new_ex( xref:OSSL_LIB_CTX.adoc[OSSL_LIB_CTX]* libctx, xref:CONF_METHOD.adoc[CONF_METHOD]* meth); ---- == Return Value New CONF, or NULL on allocation failure; free with NCONF_free(). == Parameters [cols="1,4"] |=== | 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. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#