Lines Matching refs:CONF
63 typedef int conf_init_func (CONF_IMODULE *md, const CONF *cnf);
74 void CONF_set_nconf(CONF *conf, LHASH_OF(CONF_VALUE) *hash);
108 CONF *NCONF_new_ex(OSSL_LIB_CTX *libctx, CONF_METHOD *meth);
109 OSSL_LIB_CTX *NCONF_get0_libctx(const CONF *conf);
110 CONF *NCONF_new(CONF_METHOD *meth);
115 void NCONF_free(CONF *conf);
116 void NCONF_free_data(CONF *conf);
118 int NCONF_load(CONF *conf, const char *file, long *eline);
120 int NCONF_load_fp(CONF *conf, FILE *fp, long *eline);
122 int NCONF_load_bio(CONF *conf, BIO *bp, long *eline);
123 STACK_OF(OPENSSL_CSTRING) *NCONF_get_section_names(const CONF *conf);
124 STACK_OF(CONF_VALUE) *NCONF_get_section(const CONF *conf,
126 char *NCONF_get_string(const CONF *conf, const char *group, const char *name);
127 int NCONF_get_number_e(const CONF *conf, const char *group, const char *name,
130 int NCONF_dump_fp(const CONF *conf, FILE *out);
132 int NCONF_dump_bio(const CONF *conf, BIO *out);
138 int CONF_modules_load(const CONF *cnf, const char *appname,