Lines Matching refs:conf
77 void CONF_set_nconf(CONF *conf, LHASH_OF(CONF_VALUE) *hash);
78 LHASH_OF(CONF_VALUE) *CONF_load(LHASH_OF(CONF_VALUE) *conf, const char *file,
81 LHASH_OF(CONF_VALUE) *CONF_load_fp(LHASH_OF(CONF_VALUE) *conf, FILE *fp,
84 LHASH_OF(CONF_VALUE) *CONF_load_bio(LHASH_OF(CONF_VALUE) *conf, BIO *bp,
86 STACK_OF(CONF_VALUE) *CONF_get_section(LHASH_OF(CONF_VALUE) *conf,
88 char *CONF_get_string(LHASH_OF(CONF_VALUE) *conf, const char *group,
90 long CONF_get_number(LHASH_OF(CONF_VALUE) *conf, const char *group,
92 void CONF_free(LHASH_OF(CONF_VALUE) *conf);
94 int CONF_dump_fp(LHASH_OF(CONF_VALUE) *conf, FILE *out);
96 int CONF_dump_bio(LHASH_OF(CONF_VALUE) *conf, BIO *out);
107 * New conf code. The semantics are different from the functions above. If
112 OSSL_LIB_CTX *NCONF_get0_libctx(const CONF *conf);
118 void NCONF_free(CONF *conf);
119 void NCONF_free_data(CONF *conf);
121 int NCONF_load(CONF *conf, const char *file, long *eline);
123 int NCONF_load_fp(CONF *conf, FILE *fp, long *eline);
125 int NCONF_load_bio(CONF *conf, BIO *bp, long *eline);
126 STACK_OF(OPENSSL_CSTRING) *NCONF_get_section_names(const CONF *conf);
127 STACK_OF(CONF_VALUE) *NCONF_get_section(const CONF *conf,
129 char *NCONF_get_string(const CONF *conf, const char *group, const char *name);
130 int NCONF_get_number_e(const CONF *conf, const char *group, const char *name,
133 int NCONF_dump_fp(const CONF *conf, FILE *out);
135 int NCONF_dump_bio(const CONF *conf, BIO *out);