Searched refs:cnf (Results 26 - 50 of 53) sorted by relevance

123

/freebsd-current/crypto/openssl/crypto/x509/
H A Dv3_san.c315 CONF_VALUE *cnf = sk_CONF_VALUE_value(nval, i); local
317 if (!ossl_v3_name_cmp(cnf->name, "issuer")
318 && cnf->value && strcmp(cnf->value, "copy") == 0) {
322 GENERAL_NAME *gen = v2i_GENERAL_NAME(method, ctx, cnf);
383 CONF_VALUE *cnf; local
395 cnf = sk_CONF_VALUE_value(nval, i);
396 if (ossl_v3_name_cmp(cnf->name, "email") == 0
397 && cnf->value && strcmp(cnf
479 CONF_VALUE *cnf; local
502 v2i_GENERAL_NAME(const X509V3_EXT_METHOD *method, X509V3_CTX *ctx, CONF_VALUE *cnf) argument
601 v2i_GENERAL_NAME_ex(GENERAL_NAME *out, const X509V3_EXT_METHOD *method, X509V3_CTX *ctx, CONF_VALUE *cnf, int is_nc) argument
[all...]
H A Dv3_sxnet.c101 CONF_VALUE *cnf;
105 cnf = sk_CONF_VALUE_value(nval, i);
106 if (!SXNET_add_id_asc(&sx, cnf->name, cnf->value, -1)) {
/freebsd-current/contrib/netbsd-tests/crypto/libcrypto/
H A Dt_libcrypto.sh68 cp $(atf_get_srcdir)/d_conf_ssleay.cnf ssleay.cnf
/freebsd-current/crypto/openssl/test/
H A Dconfdump.c17 static void dump_section(const char *name, const CONF *cnf) argument
19 STACK_OF(CONF_VALUE) *sect = NCONF_get_section(cnf, name);
/freebsd-current/usr.sbin/pw/
H A Dpw.h71 int write_userconfig(struct userconf *cnf, char const * file);
88 int pw_groupnext(struct userconf *cnf, bool quiet);
107 void pw_log(struct userconf * cnf, int mode, int which, char const * fmt,...) __printflike(4, 5);
/freebsd-current/crypto/openssl/test/recipes/
H A D25-test_x509.t69 my $extfile = srctop_file("test", "v3_ca_exts.cnf");
170 my $cnf = srctop_file('apps', 'openssl.cnf');
174 "-config", $cnf,
179 "-config", $cnf,
191 my $invextfile = srctop_file('test', 'invalid-x509.cnf');
204 "-config", $cnf,
H A D80-test_ssl_old.t46 my $dummycnf = srctop_file("apps", "openssl.cnf");
48 my $cnf = srctop_file("test", "ca-and-certs.cnf");
64 my $proxycnf=srctop_file("test", "proxy.cnf");
99 my $configfile = srctop_file("test","default-and-legacy.cnf");
101 $configfile = srctop_file("test","default.cnf");
107 srctop_file("test","fips-and-base.cnf"));
127 ok(run(app([@reqcmd, "-config", $cnf,
135 "-extfile", $cnf, "-extensions", "v3_ca"],
161 ok(run(app([@reqcmd, "-config", $cnf, "
[all...]
H A D03-test_fipsinstall.t31 my $provconf = srctop_file("test", "fips-and-base.cnf");
52 # Read in the text input file 'fips.cnf'
67 return replace_line_file_internal('fips.cnf', $srch, $rep, $outfile);
70 # Read in the text input file 'test/fips.cnf'
71 # and replace the .cnf file used in
72 # .include fipsmodule.cnf with a new value in $value.
77 my $srch = qr/fipsmodule.cnf/;
79 return replace_line_file_internal(srctop_file("test", 'fips.cnf'),
84 ok(!run(app(['openssl', 'fipsinstall', '-out', 'fips.cnf', '-module',
98 # output a fips.cnf fil
[all...]
H A D90-test_store.t308 my $cnf = srctop_file('test', 'ca-and-certs.cnf');
405 "-config", $cnf, "-noenc",
413 "-config", $cnf, "-section", "userreq",
H A D80-test_cmp_http.t74 my $test_config = $ENV{OPENSSL_CMP_CONFIG} // "$server_name/test.cnf";
165 # On the other hand the main test configuration file test.cnf, which references
210 my $test_config = $ENV{OPENSSL_CMP_CONFIG} // "$server_name/test.cnf";
268 my $cmd = cmdstr(app([@app, '-config', 'server.cnf',
/freebsd-current/crypto/openssl/demos/certs/
H A Docspquery.sh5 OPENSSL_CONF=../../apps/openssl.cnf
/freebsd-current/crypto/openssl/crypto/asn1/
H A Dasn_moid.c23 static int oid_module_init(CONF_IMODULE *md, const CONF *cnf) argument
31 if ((sktmp = NCONF_get_section(cnf, oid_section)) == NULL) {
H A Dasn1_gen.c65 static ASN1_TYPE *generate_v3(const char *str, X509V3_CTX *cnf, int depth,
73 static ASN1_TYPE *asn1_multi(int utype, const char *section, X509V3_CTX *cnf,
80 X509V3_CTX cnf; local
85 X509V3_set_nconf(&cnf, nconf);
86 return ASN1_generate_v3(str, &cnf);
89 ASN1_TYPE *ASN1_generate_v3(const char *str, X509V3_CTX *cnf) argument
92 ASN1_TYPE *ret = generate_v3(str, cnf, 0, &err);
98 static ASN1_TYPE *generate_v3(const char *str, X509V3_CTX *cnf, int depth, argument
127 if (!cnf) {
135 ret = asn1_multi(asn1_tags.utype, asn1_tags.str, cnf, dept
401 asn1_multi(int utype, const char *section, X509V3_CTX *cnf, int depth, int *perr) argument
[all...]
/freebsd-current/crypto/openssl/apps/
H A Dasn1parse.c320 CONF *cnf = NULL; local
326 if ((cnf = app_load_config(genconf)) == NULL)
329 genstr = NCONF_get_string(cnf, "default", "asn1");
336 atyp = ASN1_generate_nconf(genstr, cnf);
337 NCONF_free(cnf);
338 cnf = NULL;
359 NCONF_free(cnf);
H A Ds_client.c2626 CONF *cnf = NCONF_new(NULL); local
2628 if (ldapbio == NULL || cnf == NULL) {
2630 NCONF_free(cnf);
2634 if (NCONF_load_bio(cnf, ldapbio, &errline) <= 0) {
2636 NCONF_free(cnf);
2646 genstr = NCONF_get_string(cnf, "default", "asn1");
2648 NCONF_free(cnf);
2652 atyp = ASN1_generate_nconf(genstr, cnf);
2654 NCONF_free(cnf);
2658 NCONF_free(cnf);
[all...]
/freebsd-current/crypto/openssl/crypto/conf/
H A Dconf_ssl.c61 static int ssl_module_init(CONF_IMODULE *md, const CONF *cnf) argument
69 cmd_lists = NCONF_get_section(cnf, ssl_conf_section);
88 STACK_OF(CONF_VALUE) *cmds = NCONF_get_section(cnf, sect->value);
H A Dconf_lib.c239 STACK_OF(OPENSSL_CSTRING) *NCONF_get_section_names(const CONF *cnf)
245 lh_CONF_VALUE_doall_SECTION_NAMES(cnf->data, collect_section_name, names);
/freebsd-current/usr.sbin/uefisign/
H A Duefisign.c156 CONF *cnf; local
178 cnf = NCONF_new(NULL);
179 if (cnf == NULL) {
184 ok = NCONF_load_bio(cnf, bio, NULL);
190 str = NCONF_get_string(cnf, "default", "asn1");
196 t = ASN1_generate_nconf(str, cnf);
/freebsd-current/libexec/rc/rc.d/
H A Dsendmail68 cat <<-OPENSSL_CNF > openssl.cnf &&
133 -config openssl.cnf -newkey rsa:2048 >/dev/null 2>&1 &&
137 -out newreq.pem -days 365 -config openssl.cnf \
143 openssl ca -notext -config openssl.cnf \
/freebsd-current/secure/usr.bin/openssl/
H A DMakefile2 CONFS= openssl.cnf
/freebsd-current/crypto/openssl/include/openssl/
H A Dconf.h100 typedef int conf_init_func (CONF_IMODULE *md, const CONF *cnf);
175 int CONF_modules_load(const CONF *cnf, const char *appname,
/freebsd-current/sys/arm/nvidia/
H A Dtegra_gpio.c227 int cnf; local
234 cnf = gpio_read(sc, GPIO_CNF, &sc->gpio_pins[pin]);
235 if (cnf == 0) {
265 int cnf; local
272 cnf = gpio_read(sc, GPIO_CNF, &sc->gpio_pins[pin]);
273 if (cnf == 0) {
/freebsd-current/crypto/openssl/crypto/rand/
H A Drand_lib.c756 static int random_conf_init(CONF_IMODULE *md, const CONF *cnf) argument
760 RAND_GLOBAL *dgbl = rand_get_global(NCONF_get0_libctx((CONF *)cnf));
767 elist = NCONF_get_section(cnf, CONF_imodule_get_value(md));
/freebsd-current/crypto/openssl/apps/lib/
H A Dapps.c423 CONF_VALUE *cnf; local
435 cnf = sk_CONF_VALUE_value(sktmp, i);
436 if (OBJ_create(cnf->value, cnf->name, cnf->name) == NID_undef) {
438 cnf->name, cnf->value);
/freebsd-current/crypto/heimdal/lib/hx509/
H A DMakefile.am380 data/openssl.cnf \

Completed in 335 milliseconds

123