Searched refs:group (Results 126 - 150 of 1439) sorted by relevance

1234567891011>>

/netbsd-current/external/bsd/openldap/dist/tests/data/regressions/its4184/
H A Dslapd.conf24 by group="cn=A Group,ou=Groups,dc=example,dc=com" write
25 by group="cn=Another Group,ou=Groups,dc=example,dc=com" write
30 by group="cn=Another Group,ou=Groups,dc=example,dc=com" write
/netbsd-current/crypto/external/bsd/openssl/dist/crypto/ec/
H A Dec_print.c17 char *EC_POINT_point2hex(const EC_GROUP *group, argument
25 buf_len = EC_POINT_point2buf(group, point, form, &buf, ctx);
49 EC_POINT *EC_POINT_hex2point(const EC_GROUP *group, argument
57 if (group == NULL || hex == NULL)
61 pt = EC_POINT_new(group);
74 || !EC_POINT_oct2point(group, pt, oct_buf, oct_buf_len, ctx))
H A Dec_key.c50 ret->group = EC_GROUP_new_by_curve_name_ex(ctx, propq, nid);
51 if (ret->group == NULL) {
56 && ret->meth->set_group(ret, ret->group) == 0) {
90 if (r->group && r->group->meth->keyfinish)
91 r->group->meth->keyfinish(r);
97 EC_GROUP_free(r->group);
114 if (dest->group && dest->group->meth->keyfinish)
115 dest->group
258 const EC_GROUP *group = eckey->group; local
677 EC_KEY_set_group(EC_KEY *key, const EC_GROUP *group) argument
[all...]
H A Decdh_ossl.c31 if (ecdh->group->meth->ecdh_compute_key == NULL) {
36 return ecdh->group->meth->ecdh_compute_key(psec, pseclen, pub_key, ecdh);
56 const EC_GROUP *group; local
76 group = EC_KEY_get0_group(ecdh);
83 if (!EC_GROUP_get_cofactor(group, x, NULL) ||
91 if ((tmp = EC_POINT_new(group)) == NULL) {
96 if (!EC_POINT_mul(group, tmp, NULL, pub_key, priv_key, ctx)) {
106 if (!EC_POINT_get_affine_coordinates(group, tmp, x, NULL, ctx)) {
115 buflen = (EC_GROUP_get_degree(group) + 7) / 8;
H A Dec_deprecated.c21 BIGNUM *EC_POINT_point2bn(const EC_GROUP *group, argument
29 buf_len = EC_POINT_point2buf(group, point, form, &buf, ctx);
41 EC_POINT *EC_POINT_bn2point(const EC_GROUP *group, argument
61 if ((ret = EC_POINT_new(group)) == NULL) {
68 if (!EC_POINT_oct2point(group, ret, buf, buf_len, ctx)) {
/netbsd-current/external/bsd/libbind/dist/irs/
H A Dnis_gr.c105 * Need space to store the entries read from the group file.
111 struct group group; member in struct:pvt
119 static /*const*/ char group_bygid[] = "group.bygid";
120 static /*const*/ char group_byname[] = "group.byname";
125 static struct group * gr_next(struct irs_gr *);
126 static struct group * gr_byname(struct irs_gr *, const char *);
127 static struct group * gr_bygid(struct irs_gr *, gid_t);
131 static struct group * makegroupent(struct irs_gr *);
173 if (pvt->group
[all...]
H A Dlcl_gr.c96 * Need space to store the entries read from the group file.
102 struct group group; member in struct:pvt
111 static struct group * gr_next(struct irs_gr *);
112 static struct group * gr_byname(struct irs_gr *, const char *);
113 static struct group * gr_bygid(struct irs_gr *, gid_t);
119 static struct group * grscan(struct irs_gr *, int, gid_t, const char *);
168 if (pvt->group.gr_mem)
169 free(pvt->group.gr_mem);
176 static struct group *
[all...]
H A Dgen_gr.c59 * Need space to store the entries read from the group file.
65 struct group group; member in struct:pvt
76 static struct group * gr_next(struct irs_gr *);
77 static struct group * gr_byname(struct irs_gr *, const char *);
78 static struct group * gr_bygid(struct irs_gr *, gid_t);
88 static int grmerge(struct irs_gr *gr, const struct group *src,
145 static struct group *
148 struct group *rval;
167 static struct group *
486 newgid(int ngroups, gid_t *groups, gid_t group) argument
[all...]
/netbsd-current/external/bsd/pam-u2f/dist/tests/
H A Dregenerate_credentials.py77 credentials = [Credential(keyhandle = matches.group(1),
78 pubkey = matches.group(2),
79 attributes = matches.group(3),
99 credentials = [Credential(keyhandle = matches.group(1),
100 pubkey = matches.group(2),
101 attributes = matches.group(3),
109 credentials += [Credential(keyhandle = matches.group(1),
110 pubkey = matches.group(2),
111 attributes = matches.group(3),
129 credentials = [Credential(keyhandle = matches.group(
[all...]
/netbsd-current/crypto/external/bsd/openssl.old/dist/crypto/ec/
H A Decp_nist.c85 int ec_GFp_nist_group_set_curve(EC_GROUP *group, const BIGNUM *p, argument
98 group->field_mod_func = BN_nist_mod_192;
100 group->field_mod_func = BN_nist_mod_224;
102 group->field_mod_func = BN_nist_mod_256;
104 group->field_mod_func = BN_nist_mod_384;
106 group->field_mod_func = BN_nist_mod_521;
112 ret = ec_GFp_simple_group_set_curve(group, p, a, b, ctx);
120 int ec_GFp_nist_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, argument
126 if (!group || !r || !a || !b) {
136 if (!group
145 ec_GFp_nist_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
[all...]
H A Dec_print.c14 BIGNUM *EC_POINT_point2bn(const EC_GROUP *group, argument
22 buf_len = EC_POINT_point2buf(group, point, form, &buf, ctx);
34 EC_POINT *EC_POINT_bn2point(const EC_GROUP *group, argument
54 if ((ret = EC_POINT_new(group)) == NULL) {
61 if (!EC_POINT_oct2point(group, ret, buf, buf_len, ctx)) {
75 char *EC_POINT_point2hex(const EC_GROUP *group, argument
83 buf_len = EC_POINT_point2buf(group, point, form, &buf, ctx);
107 EC_POINT *EC_POINT_hex2point(const EC_GROUP *group, argument
116 ret = EC_POINT_bn2point(group, tmp_bn, point, ctx);
H A Decdh_ossl.c25 if (ecdh->group->meth->ecdh_compute_key == NULL) {
30 return ecdh->group->meth->ecdh_compute_key(psec, pseclen, pub_key, ecdh);
45 const EC_GROUP *group; local
65 group = EC_KEY_get0_group(ecdh);
68 if (!EC_GROUP_get_cofactor(group, x, NULL) ||
76 if ((tmp = EC_POINT_new(group)) == NULL) {
81 if (!EC_POINT_mul(group, tmp, NULL, pub_key, priv_key, ctx)) {
86 if (!EC_POINT_get_affine_coordinates(group, tmp, x, NULL, ctx)) {
91 buflen = (EC_GROUP_get_degree(group) + 7) / 8;
/netbsd-current/usr.sbin/user/
H A DMakefile15 LINKS+= ${BINDIR}/user ${BINDIR}/group
24 MAN+= group.8 groupadd.8 groupdel.8 groupmod.8 groupinfo.8
27 # this target checks the built-in default group, and, if it doesn't exist,
29 default-group:
30 @ln -fs ${.OBJDIR}/user ${.OBJDIR}/group; \
32 ${TOOL_AWK} '/^group/ { print $$2 }'`; \
33 if ${.OBJDIR}/group info -e $$defgrp; then \
34 defgid=`${.OBJDIR}/group info $$defgrp | \
39 ${.OBJDIR}/group info -e $$defgid || break; \
45 ${.OBJDIR}/group inf
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/utils/
H A Dschedcover.py72 if match: add(match.group(1), "default", match.group(2))
74 if match: add(match.group(1), "default")
76 if match: add(match.group(2), match.group(1), match.group(3))
78 if match: add(match.group(1), match.group(2))
80 if match: add(match.group(1), "itinerary", match.group(
[all...]
H A Dconvert-constraint-log-to-z3.py50 for group in groups:
51 constraints = [g.strip() for g in group.split('\n') if g.strip() != '']
55 variables.add(m.group())
/netbsd-current/crypto/external/bsd/openssl.old/dist/test/
H A Decstresstest.c42 static BIGNUM *walk_curve(const EC_GROUP *group, EC_POINT *point, int64_t num) argument
48 || !TEST_true(EC_POINT_get_affine_coordinates(group, point, scalar,
53 if (!TEST_true(EC_POINT_mul(group, point, NULL, point, scalar, NULL))
54 || !TEST_true(EC_POINT_get_affine_coordinates(group, point,
68 EC_GROUP *group = NULL; local
77 if (!TEST_ptr(group = EC_GROUP_new_by_curve_name(NID_X9_62_prime256v1))
78 || !TEST_ptr(point = EC_POINT_dup(EC_GROUP_get0_generator(group),
79 group))
80 || !TEST_ptr(result = walk_curve(group, point, num_repeats)))
96 EC_GROUP_free(group);
[all...]
H A Dec_internal_test.c20 static int group_field_tests(const EC_GROUP *group, BN_CTX *ctx) argument
25 if (group->meth->field_inv == NULL || group->meth->field_mul == NULL)
33 || !TEST_true(group->meth->field_inv(group, b, BN_value_one(), ctx))
36 || !TEST_true(BN_pseudo_rand(a, BN_num_bits(group->field) - 1,
38 || !TEST_true(group->meth->field_inv(group, b, a, ctx))
39 || (group->meth->field_encode &&
40 !TEST_true(group
75 EC_GROUP *group = NULL; local
166 EC_GROUP *group = NULL; local
[all...]
/netbsd-current/crypto/external/bsd/openssl/dist/test/
H A Decstresstest.c42 static BIGNUM *walk_curve(const EC_GROUP *group, EC_POINT *point, argument
49 || !TEST_true(EC_POINT_get_affine_coordinates(group, point, scalar,
54 if (!TEST_true(EC_POINT_mul(group, point, NULL, point, scalar, NULL))
55 || !TEST_true(EC_POINT_get_affine_coordinates(group, point,
69 EC_GROUP *group = NULL; local
78 if (!TEST_ptr(group = EC_GROUP_new_by_curve_name(NID_X9_62_prime256v1))
79 || !TEST_ptr(point = EC_POINT_dup(EC_GROUP_get0_generator(group),
80 group))
81 || !TEST_ptr(result = walk_curve(group, point, num_repeats)))
97 EC_GROUP_free(group);
[all...]
H A Dectest.c38 /* test multiplication with group order, long and negative scalars */
39 static int group_order_tests(EC_GROUP *group) argument
51 || !TEST_ptr(G = EC_GROUP_get0_generator(group))
52 || !TEST_ptr(P = EC_POINT_new(group))
53 || !TEST_ptr(Q = EC_POINT_new(group))
54 || !TEST_ptr(R = EC_POINT_new(group))
55 || !TEST_ptr(S = EC_POINT_new(group)))
58 if (!TEST_true(EC_GROUP_get_order(group, order, ctx))
59 || !TEST_true(EC_POINT_mul(group, Q, order, NULL, NULL, ctx))
60 || !TEST_true(EC_POINT_is_at_infinity(group,
163 EC_GROUP *group = NULL; local
785 EC_GROUP *group = NULL; local
938 EC_GROUP *group = NULL; local
1090 EC_GROUP *group = NULL; local
1139 EC_GROUP *group = NULL; local
1159 EC_GROUP *group; local
1501 EC_GROUP *group = NULL, *gtest = NULL; local
1824 EC_GROUP *group = NULL, *tgroup = NULL, *tmpg = NULL; local
2016 EC_GROUP *group = NULL, *group2 = NULL; local
2127 EC_GROUP *group = NULL; local
2240 const EC_GROUP *group = NULL; local
2298 ec_point_hex2point_test_helper(const EC_GROUP *group, const EC_POINT *P, point_conversion_form_t form, BN_CTX *bnctx) argument
2345 EC_GROUP *group = NULL; local
2388 do_test_custom_explicit_fromdata(EC_GROUP *group, BN_CTX *ctx, unsigned char *gen, int gen_size) argument
2614 EC_GROUP *group = NULL; local
2699 EC_GROUP *group = NULL, *altgroup = NULL; local
[all...]
/netbsd-current/external/mit/isl/dist/
H A Disl_factorization.c137 int *group; /* group to which a column belongs */ member in struct:isl_factor_groups
138 int *cnt; /* number of columns in the group */
139 int *rowgroup; /* group to which a constraint belongs */
143 * each column initially belongs to its own group and the groups
154 g->group = isl_alloc_array(H->ctx, int, H->n_col);
158 if (!g->pos || !g->group || !g->cnt || !g->rowgroup)
170 g->group[i] = i;
177 /* Update group[k] to the group colum
311 int group = g.group[done]; local
[all...]
/netbsd-current/crypto/external/bsd/openssh/dist/
H A Dkexecdh.c52 const EC_GROUP *group; local
65 group = EC_KEY_get0_group(client_key);
72 if ((r = sshbuf_put_ec(buf, public_key, group)) != 0 ||
80 kex->ec_group = group;
94 const EC_GROUP *group; local
111 group = EC_KEY_get0_group(server_key);
122 if ((r = sshbuf_put_ec(server_blob, pub_key, group)) != 0 ||
125 if ((r = kex_ecdh_dec_key_group(kex, client_blob, server_key, group,
138 EC_KEY *key, const EC_GROUP *group, struct sshbuf **shared_secretp)
155 if ((dh_pub = EC_POINT_new(group))
137 kex_ecdh_dec_key_group(struct kex *kex, const struct sshbuf *ec_blob, EC_KEY *key, const EC_GROUP *group, struct sshbuf **shared_secretp) argument
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/testsuite/gdb.arch/
H A Driscv-tdesc-regs.exp80 proc get_expected_result { register group } {
82 # Everything should appear once in the 'all' group.
83 if { $group == "all" || $group == "x_all" } {
87 if { $group == "save" || $group == "restore" } {
95 if { $group == "system" || $group == "csr" } {
/netbsd-current/external/bsd/pkg_install/dist/create/
H A Dutil.c76 if (file->group != NULL) {
79 if (gid_from_group(file->group, &gid) == -1)
80 errx(2, "group %s unknown", file->group);
84 errx(2, "unknown group name for gid %u",
86 file->group = xstrdup(s);
92 const char *owner, const char *group, mode_t mode)
99 file->group = (group != NULL) ? xstrdup(group)
91 make_memory_file(const char *archive_name, void *data, size_t len, const char *owner, const char *group, mode_t mode) argument
117 load_memory_file(const char *disk_name, const char *archive_name, const char *owner, const char *group, mode_t mode) argument
[all...]
/netbsd-current/external/mit/libuv/dist/docs/src/
H A Dconf.py25 major = int(m.group(1))
27 minor = int(m.group(1))
29 patch = int(m.group(1))
31 is_release = int(m.group(1))
33 suffix = m.group(1)
/netbsd-current/external/lgpl3/mpfr/dist/tools/bench/
H A Dmpfrbench.c36 /* enumeration of the group of functions */
44 /* name of the group of functions */
57 enum egroupfunc group; /* group of the function */ member in struct:benchfunc
219 enum egroupfunc group; local
222 for (group = (enum egroupfunc)0; group != egroup_last; group++)
224 mpz_init_set_si (groupscore[group], 1);
227 if (group
256 enum egroupfunc group; local
[all...]

Completed in 675 milliseconds

1234567891011>>