Home | History | Annotate | Download | only in openssl

Lines Matching refs:CONF

80  * Config files are representated by a |CONF|. */
93 /* NCONF_new returns a fresh, empty |CONF|, or NULL on error. The |method|
95 CONF *NCONF_new(void *method);
97 /* NCONF_free frees all the data owned by |conf| and then |conf| itself. */
98 void NCONF_free(CONF *conf);
101 * |conf|. It returns one on success and zero on error. In the event of an
104 int NCONF_load(CONF *conf, const char *filename, long *out_error_line);
108 int NCONF_load_bio(CONF *conf, BIO *bio, long *out_error_line);
110 /* NCONF_get_section returns a stack of values for a given section in |conf|.
113 STACK_OF(CONF_VALUE) *NCONF_get_section(const CONF *conf, const char *section);
118 const char *NCONF_get_string(const CONF *conf, const char *section,