Searched refs:ca (Results 1 - 25 of 172) sorted by relevance

1234567

/freebsd-10-stable/crypto/heimdal/lib/hx509/
H A Dtest_ca.in59 --ca-certificate=FILE:$srcdir/data/ca.crt,$srcdir/data/ca.key \
67 anchor:FILE:$srcdir/data/ca.crt > /dev/null || exit 1
72 --signer=FILE:$srcdir/data/ca.crt,$srcdir/data/ca.key || exit 1
78 anchor:FILE:$srcdir/data/ca.crt > /dev/null || exit 1
83 --signer=FILE:$srcdir/data/ca.crt,$srcdir/data/ca.key \
90 anchor:FILE:$srcdir/data/ca
[all...]
H A Dtest_chain.in54 chain:FILE:$srcdir/data/ca.crt \
55 anchor:FILE:$srcdir/data/ca.crt > /dev/null || exit 1
60 chain:FILE:$srcdir/data/ca.crt \
61 anchor:FILE:$srcdir/data/ca.crt > /dev/null || exit 1
66 anchor:FILE:$srcdir/data/ca.crt > /dev/null || exit 1
71 chain:FILE:$srcdir/data/ca.crt \
72 anchor:FILE:$srcdir/data/ca.crt > /dev/null && exit 1
74 echo "sub-cert -> sub-ca -> root"
77 chain:FILE:$srcdir/data/sub-ca.crt \
78 chain:FILE:$srcdir/data/ca
[all...]
H A Dtest_windows.in54 --issue-ca \
70 --ca-certificate=FILE:wca.pem || exit 1
82 --ca-certificate=FILE:wca.pem || exit 1
H A Dtest_cms.in77 --anchors=FILE:$srcdir/data/ca.crt \
92 --anchors=FILE:$srcdir/data/ca.crt \
100 --anchors=FILE:$srcdir/data/ca.crt \
114 --anchors=FILE:$srcdir/data/ca.crt \
135 --anchors=FILE:$srcdir/data/ca.crt \
148 --anchors=FILE:$srcdir/data/ca.crt \
162 --anchors=FILE:$srcdir/data/ca.crt \
177 --anchors=FILE:$srcdir/data/ca.crt \
191 --anchors=FILE:$srcdir/data/ca.crt \
207 --anchors=FILE:$srcdir/data/ca
[all...]
/freebsd-10-stable/contrib/apr/strings/
H A Dapr_strnatcmp.c91 char ca, cb; local
95 ca = a[ai]; cb = b[bi];
98 while (apr_isspace(ca))
99 ca = a[++ai];
105 if (apr_isdigit(ca) && apr_isdigit(cb)) {
106 fractional = (ca == '0' || cb == '0');
117 if (!ca && !cb) {
124 ca = apr_toupper(ca);
128 if (ca < c
[all...]
/freebsd-10-stable/contrib/amd/amd/
H A Dops_cachefs.c130 cachefs_args_t ca; local
136 memset((voidp) &ca, 0, sizeof(ca)); /* Paranoid */
163 ca.cfs_options.opt_flags = CFS_WRITE_AROUND | CFS_ACCESS_BACKFS;
165 ca.cfs_options.opt_popsize = DEF_POP_SIZE; /* default: 64K */
167 ca.cfs_options.opt_fgsize = DEF_FILEGRP_SIZE; /* default: 256 */
170 ca.cfs_fsid = cachedir;
173 memset(ca.cfs_cacheid, 0, sizeof(ca.cfs_cacheid));
179 xsnprintf(ca
[all...]
H A Dsched.c92 sched_job(cb_fun *cf, opaque_t ca) argument
97 p->cb_arg = ca;
110 * cf: Continuation function (ca is its arguments)
113 run_task(task_fun *tf, opaque_t ta, cb_fun *cf, opaque_t ca) argument
115 pjob *p = sched_job(cf, ca);
153 sched_task(cb_fun *cf, opaque_t ca, wchan_t wchan) argument
158 pjob *p = sched_job(cf, ca);
/freebsd-10-stable/contrib/ofed/management/infiniband-diags/src/
H A Dibstat.c79 ca_dump(umad_ca_t *ca) argument
81 if (!ca->node_type)
83 printf("%s '%s'\n", ((uint)ca->node_type <= IB_NODE_MAX ? node_type_str[ca->node_type] : "???"), ca->ca_name);
84 printf("\t%s type: %s\n", ((uint)ca->node_type <= IB_NODE_MAX ? node_type_str[ca->node_type] : "???"),ca->ca_type);
85 printf("\tNumber of ports: %d\n", ca->numports);
86 printf("\tFirmware version: %s\n", ca
140 umad_ca_t ca; local
[all...]
/freebsd-10-stable/crypto/openssl/util/
H A Dmkcerts.sh6 # mv ca-cert.pem pca-cert.pem ../certs
54 # create ca request.
58 -keyout ca-key.pem \
59 -out ca-req.pem -nodes >/dev/null <<EOF
83 -in ca-req.pem -out ca-cert.pem
118 -CAcreateserial -CAserial ca-cert.srl \
119 -CA ca-cert.pem -CAkey ca-key.pem \
155 -CAcreateserial -CAserial ca
[all...]
/freebsd-10-stable/contrib/ofed/management/libibumad/src/
H A Dumad.c96 find_cached_ca(char *ca_name, umad_ca_t *ca) argument
102 put_ca(umad_ca_t *ca) argument
205 release_ca(umad_ca_t *ca) argument
209 for (i = 0; i <= ca->numports; i++) {
210 if (!ca->ports[i])
212 release_port(ca->ports[i]);
213 free(ca->ports[i]);
214 ca->ports[i] = 0;
220 * if *port > 0, check ca[port] state. Otherwise set *port to
228 umad_ca_t ca; local
347 get_ca(char *ca_name, umad_ca_t *ca) argument
557 umad_ca_t ca; local
635 umad_get_ca(char *ca_name, umad_ca_t *ca) argument
654 umad_release_ca(umad_ca_t *ca) argument
[all...]
/freebsd-10-stable/contrib/ntp/libntp/
H A Daudio.c156 char *cp, *cc, *ca; local
178 for (ca = cc; *ca; ca++) {
179 if (isascii((unsigned char)*ca)) {
180 if (islower((unsigned char)*ca)) {
181 *ca = toupper((unsigned char)*ca);
182 } else if (isspace((unsigned char)*ca) || (*ca
[all...]
/freebsd-10-stable/crypto/openssl/crypto/x509v3/
H A Dv3_purp.c69 int ca);
71 int ca);
73 int ca);
74 static int purpose_smime(const X509 *x, int ca);
76 int ca);
78 int ca);
80 int ca);
82 int ca);
83 static int no_check(const X509_PURPOSE *xp, const X509 *x, int ca);
84 static int ocsp_helper(const X509_PURPOSE *xp, const X509 *x, int ca);
127 X509_check_purpose(X509 *x, int id, int ca) argument
594 check_purpose_ssl_client(const X509_PURPOSE *xp, const X509 *x, int ca) argument
610 check_purpose_ssl_server(const X509_PURPOSE *xp, const X509 *x, int ca) argument
628 check_purpose_ns_ssl_server(const X509_PURPOSE *xp, const X509 *x, int ca) argument
642 purpose_smime(const X509 *x, int ca) argument
668 check_purpose_smime_sign(const X509_PURPOSE *xp, const X509 *x, int ca) argument
680 check_purpose_smime_encrypt(const X509_PURPOSE *xp, const X509 *x, int ca) argument
692 check_purpose_crl_sign(const X509_PURPOSE *xp, const X509 *x, int ca) argument
712 ocsp_helper(const X509_PURPOSE *xp, const X509 *x, int ca) argument
724 check_purpose_timestamp_sign(const X509_PURPOSE *xp, const X509 *x, int ca) argument
759 no_check(const X509_PURPOSE *xp, const X509 *x, int ca) argument
[all...]
H A Dv3_bcons.c87 ASN1_OPT(BASIC_CONSTRAINTS, ca, ASN1_FBOOLEAN),
98 X509V3_add_value_bool("CA", bcons->ca, &extlist);
117 if (!X509V3_get_value_bool(val, &bcons->ca))
/freebsd-10-stable/contrib/ntp/sntp/libpkgver/
H A Dcolcomp.c104 char *ca[] = { local
113 base = (void *) ca;
114 nmemb = sizeof ca / size;
/freebsd-10-stable/contrib/ofed/management/opensm/libvendor/
H A Dosm_vendor_mlx_hca.c306 uint32_t ca; local
328 /* Allocate an array big enough to hold the ca info objects */
342 for (ca = 0; ca < ca_count; ca++) {
344 __osm_ca_info_init(p_vend, p_ca_ids[ca], &p_ca_infos[ca]);
352 total_ports += p_ca_infos[ca].p_attr->num_ports;
364 for (ca = 0; ca < ca_coun
419 uint32_t ca, portIdx, ca_count; local
[all...]
H A Dosm_vendor_mtl_hca_guid.c93 * The index is the offset into the ca's internal array
318 uint32_t ca; local
332 * 2) Allocate an array big enough to hold the ca info objects.
358 for (ca = 0; ca < ca_count; ca++) {
359 p_ca_info = &p_vend->p_ca_info[ca];
361 status = __osm_ca_info_init(p_vend, p_ca_ids[ca], p_ca_info);
375 ca, osm_ca_info_get_num_ports(p_ca_info), total_ports);
384 for (ca
437 uint32_t ca, portIdx, ca_count; local
[all...]
/freebsd-10-stable/libexec/bootpd/
H A Dgetif.c113 nmatch(ca, cb)
114 u_char *ca, *cb; /* ptrs to IP address, network order */
120 while (n && (*ca == *cb)) {
121 ca++;
129 while (n && ((*ca & n) == (*cb & n))) {
/freebsd-10-stable/sys/ofed/drivers/infiniband/ulp/ipoib/
H A Dipoib_verbs.c42 if (ib_find_pkey(priv->ca, priv->port, priv->pkey, &pkey_index)) {
127 int ipoib_transport_dev_init(struct ipoib_dev_priv *priv, struct ib_device *ca) argument
144 priv->pd = ib_alloc_pd(priv->ca);
146 printk(KERN_WARNING "%s: failed to allocate PD\n", ca->name);
152 printk(KERN_WARNING "%s: ib_get_dma_mr failed\n", ca->name);
166 priv->recv_cq = ib_create_cq(priv->ca, ipoib_ib_completion, NULL, priv, size, 0);
168 printk(KERN_WARNING "%s: failed to create receive CQ\n", ca->name);
172 priv->send_cq = ib_create_cq(priv->ca, ipoib_send_comp_handler, NULL,
175 printk(KERN_WARNING "%s: failed to create send CQ\n", ca->name);
208 printk(KERN_WARNING "%s: failed to create QP\n", ca
[all...]
/freebsd-10-stable/crypto/openssh/regress/
H A Dkrl.sh18 $SSHKEYGEN -t $ECDSA -f $OBJ/revoked-ca -C "" -N "" > /dev/null ||
67 $SSHKEYGEN -s $OBJ/revoked-ca -z $n -I "revoked $N" $f >/dev/null 2>&1 \
98 $SSHKEYGEN $OPTS -kf $OBJ/krl-ca $OBJ/revoked-ca.pub \
106 $SSHKEYGEN $OPTS -kf $OBJ/krl-serial -s $OBJ/revoked-ca \
108 $SSHKEYGEN $OPTS -kf $OBJ/krl-keyid -s $OBJ/revoked-ca.pub \
159 check_krl $f $OBJ/krl-ca $CA_RESULT "$TAG"
179 $OBJ/krl-ca $OBJ/krl-serial $OBJ/krl-keyid \
/freebsd-10-stable/crypto/openssl/crypto/bf/
H A Dbfspeed.c173 long ca, cb, cc; local
195 ca = count / 512;
198 printf("Doing BF_set_key %ld times\n", ca);
210 for (count = 0, run = 1; COND(ca); count += 4) {
218 a = ((double)COUNT(ca)) / d;
/freebsd-10-stable/crypto/openssl/crypto/cast/
H A Dcast_spd.c173 long ca, cb, cc; local
195 ca = count / 512;
198 printf("Doing CAST_set_key %ld times\n", ca);
210 for (count = 0, run = 1; COND(ca); count += 4) {
218 a = ((double)COUNT(ca)) / d;
/freebsd-10-stable/crypto/openssl/crypto/rc2/
H A Drc2speed.c173 long ca, cb, cc; local
195 ca = count / 512;
198 printf("Doing RC2_set_key %ld times\n", ca);
210 for (count = 0, run = 1; COND(ca); count += 4) {
218 a = ((double)COUNT(ca)) / d;
/freebsd-10-stable/crypto/openssl/crypto/rc4/
H A Drc4speed.c173 long ca, cb, cc; local
195 ca = count / 512;
197 printf("Doing RC4_set_key %ld times\n", ca);
209 for (count = 0, run = 1; COND(ca); count += 4) {
217 a = ((double)COUNT(ca)) / d;
/freebsd-10-stable/crypto/openssl/crypto/rc5/
H A Drc5speed.c173 long ca, cb, cc; local
195 ca = count / 512;
198 printf("Doing RC5_32_set_key %ld times\n", ca);
210 for (count = 0, run = 1; COND(ca); count += 4) {
218 a = ((double)COUNT(ca)) / d;
/freebsd-10-stable/contrib/binutils/gas/
H A Dehopt.c452 int ca = frag->fr_subtype >> 3; local
457 if (ca > 0 && diff % ca == 0 && diff / ca < 0x40)
505 int ca = frag->fr_subtype >> 3; local
506 assert (ca > 0 && diff % ca == 0 && diff / ca < 0x40);
507 loc4_frag->fr_literal[loc4_fix] = DW_CFA_advance_loc | (diff / ca);

Completed in 373 milliseconds

1234567