Searched refs:group (Results 1 - 25 of 164) sorted by relevance

1234567

/osnet-11/usr/src/common/crypto/ecc/
H A Decl.c61 ECGroup *group; local
63 group = (ECGroup *) kmem_alloc(sizeof(ECGroup), kmflag);
65 group = (ECGroup *) malloc(sizeof(ECGroup));
67 if (group == NULL)
69 group->constructed = MP_YES;
70 group->meth = NULL;
71 group->text = NULL;
72 MP_DIGITS(&group->curvea) = 0;
73 MP_DIGITS(&group->curveb) = 0;
74 MP_DIGITS(&group
104 ECGroup *group = NULL; local
145 ECGroup *group = NULL; local
190 ECGroup *group = NULL; local
232 ECGroup *group = NULL; local
395 ECGroup *group = NULL; local
422 ECPoint_validate(const ECGroup *group, const mp_int *px, const mp_int *py) argument
438 ECGroup_free(ECGroup *group) argument
[all...]
H A Dec2_mont.c62 gf2m_Mdouble(mp_int *x, mp_int *z, const ECGroup *group, int kmflag) argument
70 MP_CHECKOK(group->meth->field_sqr(x, x, group->meth));
71 MP_CHECKOK(group->meth->field_sqr(z, &t1, group->meth));
72 MP_CHECKOK(group->meth->field_mul(x, &t1, z, group->meth));
73 MP_CHECKOK(group->meth->field_sqr(x, x, group->meth));
74 MP_CHECKOK(group
89 gf2m_Madd(const mp_int *x, mp_int *x1, mp_int *z1, mp_int *x2, mp_int *z2, const ECGroup *group, int kmflag) argument
121 gf2m_Mxy(const mp_int *x, const mp_int *y, mp_int *x1, mp_int *z1, mp_int *x2, mp_int *z2, const ECGroup *group) argument
195 ec_GF2m_pt_mul_mont(const mp_int *n, const mp_int *px, const mp_int *py, mp_int *rx, mp_int *ry, const ECGroup *group) argument
[all...]
H A Decp_jm.c66 mp_int *raz4, mp_int scratch[], const ECGroup *group)
89 MP_CHECKOK(group->meth->field_sqr(px, t0, group->meth));
90 MP_CHECKOK(group->meth->field_add(t0, t0, M, group->meth));
91 MP_CHECKOK(group->meth->field_add(t0, M, t0, group->meth));
92 MP_CHECKOK(group->meth->field_add(t0, paz4, M, group->meth));
95 MP_CHECKOK(group
64 ec_GFp_pt_dbl_jm(const mp_int *px, const mp_int *py, const mp_int *pz, const mp_int *paz4, mp_int *rx, mp_int *ry, mp_int *rz, mp_int *raz4, mp_int scratch[], const ECGroup *group) argument
134 ec_GFp_pt_add_jm_aff(const mp_int *px, const mp_int *py, const mp_int *pz, const mp_int *paz4, const mp_int *qx, const mp_int *qy, mp_int *rx, mp_int *ry, mp_int *rz, mp_int *raz4, mp_int scratch[], const ECGroup *group) argument
224 ec_GFp_pt_mul_jm_wNAF(const mp_int *n, const mp_int *px, const mp_int *py, mp_int *rx, mp_int *ry, const ECGroup *group) argument
[all...]
H A Decl_mult.c55 * of the group of points on the elliptic curve. Input and output values
58 ECPoint_mul(const ECGroup *group, const mp_int *k, const mp_int *px, argument
64 ARGCHK((k != NULL) && (group != NULL), MP_BADARG);
67 /* want scalar to be less than or equal to group order */
68 if (mp_cmp(k, &group->order) > 0) {
70 MP_CHECKOK(mp_mod(k, &group->order, &kt));
80 if (group->base_point_mul) {
81 MP_CHECKOK(group->base_point_mul(&kt, rx, ry, group));
83 MP_CHECKOK(group
113 ec_pts_mul_basic(const mp_int *k1, const mp_int *k2, const mp_int *px, const mp_int *py, mp_int *rx, mp_int *ry, const ECGroup *group) argument
168 ec_pts_mul_simul_w2(const mp_int *k1, const mp_int *k2, const mp_int *px, const mp_int *py, mp_int *rx, mp_int *ry, const ECGroup *group) argument
318 ECPoints_mul(const ECGroup *group, const mp_int *k1, const mp_int *k2, const mp_int *px, const mp_int *py, mp_int *rx, mp_int *ry) argument
[all...]
H A Dec2_aff.c81 const ECGroup *group)
109 MP_CHECKOK(group->meth->field_add(py, qy, &tempy, group->meth));
110 MP_CHECKOK(group->meth->field_add(px, qx, &tempx, group->meth));
111 MP_CHECKOK(group->meth->
112 field_div(&tempy, &tempx, &lambda, group->meth));
113 MP_CHECKOK(group->meth->field_sqr(&lambda, &tempx, group->meth));
114 MP_CHECKOK(group
79 ec_GF2m_pt_add_aff(const mp_int *px, const mp_int *py, const mp_int *qx, const mp_int *qy, mp_int *rx, mp_int *ry, const ECGroup *group) argument
161 ec_GF2m_pt_sub_aff(const mp_int *px, const mp_int *py, const mp_int *qx, const mp_int *qy, mp_int *rx, mp_int *ry, const ECGroup *group) argument
181 ec_GF2m_pt_dbl_aff(const mp_int *px, const mp_int *py, mp_int *rx, mp_int *ry, const ECGroup *group) argument
192 ec_GF2m_pt_mul_aff(const mp_int *n, const mp_int *px, const mp_int *py, mp_int *rx, mp_int *ry, const ECGroup *group) argument
285 ec_GF2m_validate_point(const mp_int *px, const mp_int *py, const ECGroup *group) argument
[all...]
H A Decp_aff.c87 const ECGroup *group)
116 MP_CHECKOK(group->meth->field_sub(py, qy, &tempy, group->meth));
117 MP_CHECKOK(group->meth->field_sub(px, qx, &tempx, group->meth));
118 MP_CHECKOK(group->meth->
119 field_div(&tempy, &tempx, &lambda, group->meth));
129 MP_CHECKOK(group->meth->field_sqr(qx, &tempx, group->meth));
131 if (group
85 ec_GFp_pt_add_aff(const mp_int *px, const mp_int *py, const mp_int *qx, const mp_int *qy, mp_int *rx, mp_int *ry, const ECGroup *group) argument
171 ec_GFp_pt_sub_aff(const mp_int *px, const mp_int *py, const mp_int *qx, const mp_int *qy, mp_int *rx, mp_int *ry, const ECGroup *group) argument
192 ec_GFp_pt_dbl_aff(const mp_int *px, const mp_int *py, mp_int *rx, mp_int *ry, const ECGroup *group) argument
205 ec_GFp_pt_mul_aff(const mp_int *n, const mp_int *px, const mp_int *py, mp_int *rx, mp_int *ry, const ECGroup *group) argument
298 ec_GFp_validate_point(const mp_int *px, const mp_int *py, const ECGroup *group) argument
[all...]
H A Decp_jac.c67 mp_int *ry, mp_int *rz, const ECGroup *group)
77 if (group->meth->field_enc) {
78 MP_CHECKOK(group->meth->field_enc(rz, rz, group->meth));
91 mp_int *rx, mp_int *ry, const ECGroup *group)
114 MP_CHECKOK(group->meth->field_div(NULL, pz, &z1, group->meth));
115 MP_CHECKOK(group->meth->field_sqr(&z1, &z2, group->meth));
116 MP_CHECKOK(group
66 ec_GFp_pt_aff2jac(const mp_int *px, const mp_int *py, mp_int *rx, mp_int *ry, mp_int *rz, const ECGroup *group) argument
90 ec_GFp_pt_jac2aff(const mp_int *px, const mp_int *py, const mp_int *pz, mp_int *rx, mp_int *ry, const ECGroup *group) argument
153 ec_GFp_pt_add_jac_aff(const mp_int *px, const mp_int *py, const mp_int *pz, const mp_int *qx, const mp_int *qy, mp_int *rx, mp_int *ry, mp_int *rz, const ECGroup *group) argument
242 ec_GFp_pt_dbl_jac(const mp_int *px, const mp_int *py, const mp_int *pz, mp_int *rx, mp_int *ry, mp_int *rz, const ECGroup *group) argument
335 ec_GFp_pt_mul_jac(const mp_int *n, const mp_int *px, const mp_int *py, mp_int *rx, mp_int *ry, const ECGroup *group) argument
416 ec_GFp_pts_mul_jac(const mp_int *k1, const mp_int *k2, const mp_int *px, const mp_int *py, mp_int *rx, mp_int *ry, const ECGroup *group) argument
[all...]
H A Decp_test.c117 ECGroup_free(group); \
118 group = ECGroup_fromHex(params, KM_SLEEP); \
119 if (group == NULL) { \
120 printf(" Error: could not construct group.\n"); \
124 MP_CHECKOK( ectest_curve_GFp(group, ectestPrint, ectestTime, 1, KM_SLEEP) ); \
130 ECGroup_free(group); \
131 group = ECGroup_fromName(name, KM_SLEEP); \
132 if (group == NULL) { \
133 printf(" Warning: could not construct group.\n"); \
136 MP_CHECKOK( ectest_curve_GFp(group, ectestPrin
144 ectest_curve_GFp(ECGroup *group, int ectestPrint, int ectestTime, int generic, int kmflag) argument
428 ECGroup *group = NULL; local
[all...]
H A Dec2_test.c118 ECGroup_free(group); \
119 group = ECGroup_fromHex(params, KM_SLEEP); \
120 if (group == NULL) { \
121 printf(" Error: could not construct group.\n"); \
125 MP_CHECKOK( ectest_curve_GF2m(group, ectestPrint, ectestTime, 1, KM_SLEEP) ); \
131 ECGroup_free(group); \
132 group = ECGroup_fromName(name, KM_SLEEP); \
133 if (group == NULL) { \
134 printf(" Warning: could not construct group.\n"); \
137 MP_CHECKOK( ectest_curve_GF2m(group, ectestPrin
145 ectest_curve_GF2m(ECGroup *group, int ectestPrint, int ectestTime, int generic, int kmflag) argument
465 ECGroup *group = NULL; local
[all...]
H A Decp.h62 mp_int *ry, const ECGroup *group);
67 mp_int *ry, const ECGroup *group);
71 mp_int *ry, const ECGroup *group);
74 mp_err ec_GFp_validate_point(const mp_int *px, const mp_int *py, const ECGroup *group);
82 const ECGroup *group);
88 mp_int *ry, mp_int *rz, const ECGroup *group);
94 const ECGroup *group);
110 mp_int *rz, const ECGroup *group);
115 mp_int *rz, const ECGroup *group);
123 const ECGroup *group);
[all...]
H A Dec2.h62 mp_int *ry, const ECGroup *group);
67 mp_int *ry, const ECGroup *group);
71 mp_int *ry, const ECGroup *group);
74 mp_err ec_GF2m_validate_point(const mp_int *px, const mp_int *py, const ECGroup *group);
83 const ECGroup *group);
91 const ECGroup *group);
97 mp_int *ry, mp_int *rz, const ECGroup *group);
103 const ECGroup *group);
119 mp_int *rz, const ECGroup *group);
124 mp_int *rz, const ECGroup *group);
[all...]
H A Decl.h86 void ECGroup_free(ECGroup *group);
99 * of the group of points on the elliptic curve. Input and output values
101 mp_err ECPoint_mul(const ECGroup *group, const mp_int *k, const mp_int *px,
105 * k2 * P(x, y), where G is the generator (base point) of the group of
108 mp_err ECPoints_mul(const ECGroup *group, const mp_int *k1,
116 mp_err ECPoint_validate(const ECGroup *group, const mp_int *px, const
/osnet-11/usr/src/lib/libc/port/gen/
H A Dgetgrnam_r.c60 struct group *
61 _uncached_getgrnam_r(const char *name, struct group *result, char *buffer,
64 struct group *
65 _uncached_getgrgid_r(gid_t gid, struct group *result, char *buffer, int buflen);
71 struct group *
72 getgrnam_r(const char *name, struct group *result, char *buffer, int buflen)
84 return ((struct group *)NSS_XbyY_FINI(&arg));
91 struct group *
92 getgrgid_r(gid_t gid, struct group *result, char *buffer, int buflen)
100 return ((struct group *)NSS_XbyY_FIN
316 struct group *group = (struct group *)ent; local
[all...]
H A Dgetxby_door.h73 struct group *
74 _uncached_getgrnam_r(const char *name, struct group *result, char *buffer,
77 struct group *
78 _uncached_getgrgid_r(gid_t gid, struct group *result, char *buffer, int buflen);
H A Dgetgrnam.c77 b = NSS_XbyY_ALLOC(buffer, sizeof (struct group), blen);
81 struct group *
85 struct group *ret;
100 struct group *
104 struct group *ret;
119 struct group *
128 struct group *
/osnet-11/usr/src/grub/grub2/grub-core/gnulib/
H A Dargp-parse.c194 /* The state of a `group' during parsing. Each group corresponds to a
197 struct group
199 /* This group's parsing function. */
202 /* Which argp this group is from. */
206 options for this group. We use it to determine from which group a
213 /* This group's parser's parent's group. */
214 struct group *paren
193 struct group struct
223 group_parse(struct group *group, struct argp_state *state, int key, char *arg) argument
288 convert_options(const struct argp *argp, struct group *parent, unsigned parent_index, struct group *group, struct parser_convert_state *cvt) argument
461 struct group *group; local
572 struct group *group; local
671 struct group *group; local
728 struct group *group; local
940 struct group *group; local
[all...]
/osnet-11/usr/src/grub/grub-0.97/netboot/
H A Digmp.h18 in_addr group; member in struct:igmp
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Net/demos/
H A Dnntp24 foreach $group (@groups)
26 $new = $nntp->newnews(time - 3600, lc $group);
/osnet-11/usr/src/tools/onbld/Checks/
H A DComments.py94 if match.group(1) not in bugs:
95 bugs[match.group(1)] = []
96 bugs[match.group(1)].append(match.group(2))
106 if match.group(1) not in bugs:
107 bugs[match.group(1)] = []
108 bugs[match.group(1)].append(match.group(2))
115 arc, case = re.split('[/ \t]', match.group(1), 1)
116 arcs.setdefault((arc, case), []).append(match.group(
[all...]
H A DCopyright.py101 # group 1 = optional initial year
102 # group 2 = current year
103 # group 3 = comma after current year
104 # group 4 = spacing between phrases
114 if match.group(2) != year:
117 (match.group(2), year), filename, lineno)
120 if match.group(3) != ',':
125 if match.group(4) != ' ':
/osnet-11/usr/src/lib/libparted/common/libparted/fs/ext2/
H A Dext2_resize.c31 int group; local
50 fputs ("ext2_add_group: last (existing) group "
57 group = fs->numgroups;
58 sparse = ext2_is_group_sparse(fs, group);
60 + group * EXT2_SUPER_BLOCKS_PER_GROUP(fs->sb);
126 fs->gd[group].bg_block_bitmap
128 fs->gd[group].bg_inode_bitmap
133 fs->gd[group].bg_block_bitmap
135 fs->gd[group].bg_inode_bitmap
140 fs->gd[group]
201 int group; local
328 int group; local
374 int group; local
[all...]
/osnet-11/usr/src/lib/libresolv2/include/isc/
H A Dirpmarshall.h50 int irp_marshall_gr(const struct group *, char **, size_t *);
51 int irp_unmarshall_gr(struct group *, char *);
101 * gr_mem field in struct group) have their subparts separated by
/osnet-11/usr/src/cmd/sendmail/cf/sh/
H A Dcheck-permissions.sh34 # Check the group- and world-writable bits on the given file.
39 echo $2: $1 is group and world writable
45 echo $2: $1 is group writable
/osnet-11/usr/src/lib/libcmd/common/
H A Did.c35 "group IDs and the corresponding user and group names of the "
40 "the user and group IDs and any supplementary group IDs of the "
47 "[g:group?Writes only the group ID.]"
49 "[G:groups?Writes only the supplementary group IDs.]"
197 register struct group* grp;
213 gid_t group; local
235 error(ERROR_exit(1), "out of space [group arra
[all...]
/osnet-11/usr/src/lib/libsocket/inet/
H A Dsourcefilter.c41 getsourcefilter(int s, uint32_t interface, struct sockaddr *group, argument
58 switch (group->sa_family) {
64 (void) memcpy((void *)&gf->gf_group, (void *)group,
72 (void) memcpy((void *)&gf->gf_group, (void *)group,
101 setsourcefilter(int s, uint32_t interface, struct sockaddr *group, argument
116 switch (group->sa_family) {
122 (void) memcpy((void *)&gf->gf_group, (void *)group,
130 (void) memcpy((void *)&gf->gf_group, (void *)group,
158 getipv4sourcefilter(int s, struct in_addr interface, struct in_addr group, argument
174 imsf->imsf_multiaddr = group;
197 setipv4sourcefilter(int s, struct in_addr interface, struct in_addr group, uint32_t fmode, uint32_t numsrc, struct in_addr *slist) argument
[all...]

Completed in 99 milliseconds

1234567