Symbol: CONF
lib/libcrypto/asn1/asn1.h
833
ASN1_TYPE *ASN1_generate_nconf(const char *str, CONF *nconf);
lib/libcrypto/asn1/asn1_gen.c
128
ASN1_generate_nconf(const char *str, CONF *nconf)
lib/libcrypto/asn1/asn_moid.c
76
oid_module_init(CONF_IMODULE *md, const CONF *cnf)
lib/libcrypto/conf/conf.h
115
CONF *NCONF_new(const CONF_METHOD *meth);
lib/libcrypto/conf/conf.h
116
void NCONF_free(CONF *conf);
lib/libcrypto/conf/conf.h
118
int NCONF_load(CONF *conf, const char *file, long *eline);
lib/libcrypto/conf/conf.h
119
int NCONF_load_bio(CONF *conf, BIO *bp, long *eline);
lib/libcrypto/conf/conf.h
120
STACK_OF(CONF_VALUE) *NCONF_get_section(const CONF *conf, const char *section);
lib/libcrypto/conf/conf.h
121
char *NCONF_get_string(const CONF *conf, const char *group, const char *name);
lib/libcrypto/conf/conf.h
122
int NCONF_get_number_e(const CONF *conf, const char *group, const char *name,
lib/libcrypto/conf/conf.h
129
int CONF_modules_load(const CONF *cnf, const char *appname,
lib/libcrypto/conf/conf.h
97
typedef int conf_init_func(CONF_IMODULE *md, const CONF *cnf);
lib/libcrypto/conf/conf_api.c
111
_CONF_get_string(const CONF *conf, const char *section, const char *name)
lib/libcrypto/conf/conf_api.c
166
_CONF_new_data(CONF *conf)
lib/libcrypto/conf/conf_api.c
179
_CONF_free_data(CONF *conf)
lib/libcrypto/conf/conf_api.c
226
_CONF_new_section(CONF *conf, const char *section)
lib/libcrypto/conf/conf_api.c
75
_CONF_get_section(const CONF *conf, const char *section)
lib/libcrypto/conf/conf_api.c
88
_CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value)
lib/libcrypto/conf/conf_def.c
110
def_destroy_data(CONF *conf)
lib/libcrypto/conf/conf_def.c
119
def_destroy(CONF *conf)
lib/libcrypto/conf/conf_def.c
129
def_load_bio(CONF *conf, BIO *in, long *line)
lib/libcrypto/conf/conf_def.c
322
CONF ctmp;
lib/libcrypto/conf/conf_def.c
337
def_load(CONF *conf, const char *name, long *line)
lib/libcrypto/conf/conf_def.c
358
clear_comments(CONF *conf, char *p)
lib/libcrypto/conf/conf_def.c
396
str_copy(CONF *conf, char *section, char **pto, char *from)
lib/libcrypto/conf/conf_def.c
547
eat_ws(CONF *conf, char *p)
lib/libcrypto/conf/conf_def.c
555
eat_alpha_numeric(CONF *conf, char *p)
lib/libcrypto/conf/conf_def.c
569
scan_quote(CONF *conf, char *p)
lib/libcrypto/conf/conf_def.c
589
scan_dquote(CONF *conf, char *p)
lib/libcrypto/conf/conf_def.c
621
def_dump(const CONF *conf, BIO *out)
lib/libcrypto/conf/conf_def.c
629
def_is_number(const CONF *conf, char c)
lib/libcrypto/conf/conf_def.c
635
def_to_int(const CONF *conf, char c)
lib/libcrypto/conf/conf_def.c
75
static char *eat_ws(CONF *conf, char *p);
lib/libcrypto/conf/conf_def.c
76
static char *eat_alpha_numeric(CONF *conf, char *p);
lib/libcrypto/conf/conf_def.c
77
static void clear_comments(CONF *conf, char *p);
lib/libcrypto/conf/conf_def.c
78
static int str_copy(CONF *conf, char *section, char **to, char *from);
lib/libcrypto/conf/conf_def.c
79
static char *scan_quote(CONF *conf, char *p);
lib/libcrypto/conf/conf_def.c
80
static char *scan_dquote(CONF *conf, char *p);
lib/libcrypto/conf/conf_def.c
83
static CONF *
lib/libcrypto/conf/conf_def.c
86
CONF *ret;
lib/libcrypto/conf/conf_def.c
88
ret = calloc(1, sizeof(CONF) + sizeof(unsigned short *));
lib/libcrypto/conf/conf_def.c
98
def_init_default(CONF *conf)
lib/libcrypto/conf/conf_lib.c
108
NCONF_load(CONF *conf, const char *file, long *eline)
lib/libcrypto/conf/conf_lib.c
120
NCONF_load_bio(CONF *conf, BIO *bp, long *eline)
lib/libcrypto/conf/conf_lib.c
132
NCONF_get_section(const CONF *conf, const char *section)
lib/libcrypto/conf/conf_lib.c
154
NCONF_get_string(const CONF *conf, const char *group, const char *name)
lib/libcrypto/conf/conf_lib.c
175
NCONF_get_number_e(const CONF *conf, const char *group, const char *name,
lib/libcrypto/conf/conf_lib.c
72
CONF_set_nconf(CONF *conf, LHASH_OF(CONF_VALUE) *hash)
lib/libcrypto/conf/conf_lib.c
80
CONF *
lib/libcrypto/conf/conf_lib.c
83
CONF *ret;
lib/libcrypto/conf/conf_lib.c
99
NCONF_free(CONF *conf)
lib/libcrypto/conf/conf_local.h
68
CONF *(*create)(const CONF_METHOD *meth);
lib/libcrypto/conf/conf_local.h
69
int (*init)(CONF *conf);
lib/libcrypto/conf/conf_local.h
70
int (*destroy)(CONF *conf);
lib/libcrypto/conf/conf_local.h
71
int (*destroy_data)(CONF *conf);
lib/libcrypto/conf/conf_local.h
72
int (*load_bio)(CONF *conf, BIO *bp, long *eline);
lib/libcrypto/conf/conf_local.h
73
int (*dump)(const CONF *conf, BIO *bp);
lib/libcrypto/conf/conf_local.h
74
int (*is_number)(const CONF *conf, char c);
lib/libcrypto/conf/conf_local.h
75
int (*to_int)(const CONF *conf, char c);
lib/libcrypto/conf/conf_local.h
76
int (*load)(CONF *conf, const char *name, long *eline);
lib/libcrypto/conf/conf_local.h
87
void CONF_set_nconf(CONF *conf, LHASH_OF(CONF_VALUE) *hash);
lib/libcrypto/conf/conf_local.h
89
CONF_VALUE *_CONF_new_section(CONF *conf, const char *section);
lib/libcrypto/conf/conf_local.h
90
CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section);
lib/libcrypto/conf/conf_local.h
92
int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value);
lib/libcrypto/conf/conf_local.h
93
char *_CONF_get_string(const CONF *conf, const char *section,
lib/libcrypto/conf/conf_local.h
96
int _CONF_new_data(CONF *conf);
lib/libcrypto/conf/conf_local.h
97
void _CONF_free_data(CONF *conf);
lib/libcrypto/conf/conf_mod.c
105
const CONF *cnf);
lib/libcrypto/conf/conf_mod.c
110
CONF_modules_load(const CONF *cnf, const char *appname, unsigned long flags)
lib/libcrypto/conf/conf_mod.c
154
CONF *conf = NULL;
lib/libcrypto/conf/conf_mod.c
189
module_run(const CONF *cnf, char *name, char *value, unsigned long flags)
lib/libcrypto/conf/conf_mod.c
279
module_init(CONF_MODULE *mod, char *name, char *value, const CONF *cnf)
lib/libcrypto/conf/conf_mod.c
99
static int module_run(const CONF *cnf, char *name, char *value,
lib/libcrypto/ct/ct_log.c
182
ctlog_new_from_conf(CTLOG **ct_log, const CONF *conf, const char *section)
lib/libcrypto/ct/ct_log.c
97
CONF *conf;
lib/libcrypto/ts/ts.h
542
const char *TS_CONF_get_tsa_section(CONF *conf, const char *section);
lib/libcrypto/ts/ts.h
543
int TS_CONF_set_serial(CONF *conf, const char *section, TS_serial_cb cb,
lib/libcrypto/ts/ts.h
545
int TS_CONF_set_signer_cert(CONF *conf, const char *section,
lib/libcrypto/ts/ts.h
547
int TS_CONF_set_certs(CONF *conf, const char *section, const char *certs,
lib/libcrypto/ts/ts.h
549
int TS_CONF_set_signer_key(CONF *conf, const char *section,
lib/libcrypto/ts/ts.h
551
int TS_CONF_set_def_policy(CONF *conf, const char *section,
lib/libcrypto/ts/ts.h
553
int TS_CONF_set_policies(CONF *conf, const char *section, TS_RESP_CTX *ctx);
lib/libcrypto/ts/ts.h
554
int TS_CONF_set_digests(CONF *conf, const char *section, TS_RESP_CTX *ctx);
lib/libcrypto/ts/ts.h
555
int TS_CONF_set_accuracy(CONF *conf, const char *section, TS_RESP_CTX *ctx);
lib/libcrypto/ts/ts.h
556
int TS_CONF_set_clock_precision_digits(CONF *conf, const char *section,
lib/libcrypto/ts/ts.h
558
int TS_CONF_set_ordering(CONF *conf, const char *section, TS_RESP_CTX *ctx);
lib/libcrypto/ts/ts.h
559
int TS_CONF_set_tsa_name(CONF *conf, const char *section, TS_RESP_CTX *ctx);
lib/libcrypto/ts/ts.h
560
int TS_CONF_set_ess_cert_id_chain(CONF *conf, const char *section,
lib/libcrypto/ts/ts_conf.c
180
TS_CONF_get_tsa_section(CONF *conf, const char *section)
lib/libcrypto/ts/ts_conf.c
192
TS_CONF_set_serial(CONF *conf, const char *section, TS_serial_cb cb,
lib/libcrypto/ts/ts_conf.c
212
TS_CONF_set_signer_cert(CONF *conf, const char *section, const char *cert,
lib/libcrypto/ts/ts_conf.c
238
TS_CONF_set_certs(CONF *conf, const char *section, const char *certs,
lib/libcrypto/ts/ts_conf.c
263
TS_CONF_set_signer_key(CONF *conf, const char *section, const char *key,
lib/libcrypto/ts/ts_conf.c
289
TS_CONF_set_def_policy(CONF *conf, const char *section, const char *policy,
lib/libcrypto/ts/ts_conf.c
317
TS_CONF_set_policies(CONF *conf, const char *section, TS_RESP_CTX *ctx)
lib/libcrypto/ts/ts_conf.c
351
TS_CONF_set_digests(CONF *conf, const char *section, TS_RESP_CTX *ctx)
lib/libcrypto/ts/ts_conf.c
391
TS_CONF_set_accuracy(CONF *conf, const char *section, TS_RESP_CTX *ctx)
lib/libcrypto/ts/ts_conf.c
451
TS_CONF_set_clock_precision_digits(CONF *conf, const char *section,
lib/libcrypto/ts/ts_conf.c
478
TS_CONF_add_flag(CONF *conf, const char *section, const char *field, int flag,
lib/libcrypto/ts/ts_conf.c
497
TS_CONF_set_ordering(CONF *conf, const char *section, TS_RESP_CTX *ctx)
lib/libcrypto/ts/ts_conf.c
504
TS_CONF_set_tsa_name(CONF *conf, const char *section, TS_RESP_CTX *ctx)
lib/libcrypto/ts/ts_conf.c
511
TS_CONF_set_ess_cert_id_chain(CONF *conf, const char *section, TS_RESP_CTX *ctx)
lib/libcrypto/x509/x509_conf.c
104
X509V3_EXT_nconf_nid(CONF *conf, X509V3_CTX *ctx, int nid, const char *value)
lib/libcrypto/x509/x509_conf.c
118
do_ext_nconf(CONF *conf, X509V3_CTX *ctx, int nid, int crit, const char *value)
lib/libcrypto/x509/x509_conf.c
344
X509V3_EXT_add_nconf_sk(CONF *conf, X509V3_CTX *ctx, const char *section,
lib/libcrypto/x509/x509_conf.c
367
X509V3_EXT_add_nconf(CONF *conf, X509V3_CTX *ctx, const char *section,
lib/libcrypto/x509/x509_conf.c
379
X509V3_EXT_CRL_add_nconf(CONF *conf, X509V3_CTX *ctx, const char *section,
lib/libcrypto/x509/x509_conf.c
391
X509V3_EXT_REQ_add_nconf(CONF *conf, X509V3_CTX *ctx, const char *section,
lib/libcrypto/x509/x509_conf.c
419
X509V3_set_nconf(X509V3_CTX *ctx, CONF *conf)
lib/libcrypto/x509/x509_conf.c
441
CONF ctmp;
lib/libcrypto/x509/x509_conf.c
452
CONF ctmp;
lib/libcrypto/x509/x509_conf.c
74
static X509_EXTENSION *do_ext_nconf(CONF *conf, X509V3_CTX *ctx, int nid,
lib/libcrypto/x509/x509_conf.c
84
X509V3_EXT_nconf(CONF *conf, X509V3_CTX *ctx, const char *name,
lib/libcrypto/x509/x509v3.h
605
X509_EXTENSION *X509V3_EXT_nconf_nid(CONF *conf, X509V3_CTX *ctx, int ext_nid,
lib/libcrypto/x509/x509v3.h
607
X509_EXTENSION *X509V3_EXT_nconf(CONF *conf, X509V3_CTX *ctx, const char *name,
lib/libcrypto/x509/x509v3.h
609
int X509V3_EXT_add_nconf_sk(CONF *conf, X509V3_CTX *ctx, const char *section,
lib/libcrypto/x509/x509v3.h
611
int X509V3_EXT_add_nconf(CONF *conf, X509V3_CTX *ctx, const char *section,
lib/libcrypto/x509/x509v3.h
613
int X509V3_EXT_REQ_add_nconf(CONF *conf, X509V3_CTX *ctx, const char *section,
lib/libcrypto/x509/x509v3.h
615
int X509V3_EXT_CRL_add_nconf(CONF *conf, X509V3_CTX *ctx, const char *section,
lib/libcrypto/x509/x509v3.h
623
void X509V3_set_nconf(X509V3_CTX *ctx, CONF *conf);
regress/usr.bin/openssl/options/optionstest.c
29
CONF *config;
usr.bin/newsyslog/newsyslog.c
145
char *conf = CONF; /* Configuration file to use */
usr.bin/openssl/apps.c
1044
load_config(BIO *err, CONF *cnf)
usr.bin/openssl/apps.c
1296
CONF *dbattr_conf = NULL;
usr.bin/openssl/apps.c
445
add_oid_section(BIO *err, CONF *conf)
usr.bin/openssl/apps.h
137
extern CONF *config;
usr.bin/openssl/apps.h
170
int add_oid_section(BIO *err, CONF *conf);
usr.bin/openssl/apps.h
189
int load_config(BIO *err, CONF *cnf);
usr.bin/openssl/asn1pars.c
417
CONF *cnf = NULL;
usr.bin/openssl/ca.c
128
char *enddate, long days, int batch, char *ext_sect, CONF *conf,
usr.bin/openssl/ca.c
135
char *enddate, long days, int batch, char *ext_sect, CONF *conf,
usr.bin/openssl/ca.c
145
char *ext_sect, CONF *conf, unsigned long certopt, unsigned long nameopt,
usr.bin/openssl/ca.c
1535
char *enddate, long days, int batch, char *ext_sect, CONF *lconf,
usr.bin/openssl/ca.c
155
static CONF *conf = NULL;
usr.bin/openssl/ca.c
156
static CONF *extconf = NULL;
usr.bin/openssl/ca.c
1603
char *enddate, long days, int batch, char *ext_sect, CONF *lconf,
usr.bin/openssl/ca.c
1708
int verbose, X509_REQ *req, char *ext_sect, CONF *lconf,
usr.bin/openssl/openssl.c
342
CONF *config = NULL;
usr.bin/openssl/req.c
129
static CONF *req_conf = NULL;
usr.bin/openssl/req.c
130
static CONF *addext_conf = NULL;
usr.bin/openssl/ts.c
377
CONF *conf = NULL;
usr.bin/openssl/ts.c
484
static CONF *
usr.bin/openssl/ts.c
487
CONF *conf = NULL;
usr.bin/openssl/ts.c
764
reply_command(CONF *conf, char *section, char *queryfile, char *passin,
usr.bin/openssl/ts.c
80
static CONF *load_config_file(const char *configfile);
usr.bin/openssl/ts.c
888
create_response(CONF *conf, const char *section, char *queryfile, char *passin,
usr.bin/openssl/ts.c
95
static int reply_command(CONF *conf, char *section, char *queryfile,
usr.bin/openssl/ts.c
99
static TS_RESP *create_response(CONF *conf, const char *section,
usr.bin/openssl/x509.c
1380
char *serialfile, int create, int days, int clrext, CONF *conf,
usr.bin/openssl/x509.c
1616
CONF *conf, char *section, X509_NAME *issuer, char *force_pubkey)
usr.bin/openssl/x509.c
792
CONF *extconf = NULL;
usr.bin/openssl/x509.c
84
const EVP_MD *digest, CONF *conf, char *section, X509_NAME *issuer,
usr.bin/openssl/x509.c
88
char *serial, int create, int days, int clrext, CONF *conf, char *section,