/osnet-11/usr/src/common/crypto/ecc/ |
H A D | ecp_384.c | 295 ec_group_set_gfp384(ECGroup *group, ECCurveName name) argument 298 group->meth->field_mod = &ec_GFp_nistp384_mod; 299 group->meth->field_mul = &ec_GFp_nistp384_mul; 300 group->meth->field_sqr = &ec_GFp_nistp384_sqr;
|
H A D | ecp_521.c | 170 ec_group_set_gfp521(ECGroup *group, ECCurveName name) argument 173 group->meth->field_mod = &ec_GFp_nistp521_mod; 174 group->meth->field_mul = &ec_GFp_nistp521_mul; 175 group->meth->field_sqr = &ec_GFp_nistp521_sqr; 176 group->meth->field_div = &ec_GFp_nistp521_div;
|
H A D | ec2_163.c | 263 ec_group_set_gf2m163(ECGroup *group, ECCurveName name) argument 265 group->meth->field_mod = &ec_GF2m_163_mod; 266 group->meth->field_mul = &ec_GF2m_163_mul; 267 group->meth->field_sqr = &ec_GF2m_163_sqr;
|
H A D | ec2_test.c | 118 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 D | ecl.c | 61 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 D | ecl_mult.c | 55 * 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 D | ecp_test.c | 117 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 D | ec2_193.c | 280 ec_group_set_gf2m193(ECGroup *group, ECCurveName name) argument 282 group->meth->field_mod = &ec_GF2m_193_mod; 283 group->meth->field_mul = &ec_GF2m_193_mul; 284 group->meth->field_sqr = &ec_GF2m_193_sqr;
|
H A D | ec2_233.c | 303 ec_group_set_gf2m233(ECGroup *group, ECCurveName name) argument 305 group->meth->field_mod = &ec_GF2m_233_mod; 306 group->meth->field_mul = &ec_GF2m_233_mul; 307 group->meth->field_sqr = &ec_GF2m_233_sqr;
|
H A D | ec2_aff.c | 81 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 D | ec2_mont.c | 62 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 D | ecp_aff.c | 87 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 D | ecp_jm.c | 66 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...] |
/osnet-11/usr/src/grub/grub-0.97/netboot/ |
H A D | igmp.h | 18 in_addr group; member in struct:igmp
|
H A D | grub.h | 55 in_addr group; member in struct:igmptable_t 93 extern void join_group(int slot, unsigned long group);
|
/osnet-11/usr/src/lib/libresolv2/common/irs/ |
H A D | gen_ng.c | 148 ng_rewind(struct irs_ng *this, const char *group) { argument 156 pvt->curgroup = strdup(group);
|
H A D | irp_ng.c | 121 * void ng_rewind(struct irs_ng *this, const char *group) 127 ng_rewind(struct irs_ng *this, const char *group) { argument 137 "setnetgrent %s", group) != 0) { 145 group, text);
|
H A D | lcl_ng.c | 62 * \li linelist is just used by setnetgrent() to parse the net group file via. 151 ng_rewind(struct irs_ng *this, const char *group) { argument 160 strcmp(group, pvt->grouphead.grname)) { 166 if (parse_netgrp(this, group)) 168 if (!(pvt->grouphead.grname = strdup(group))) 273 parse_netgrp(struct irs_ng *this, const char *group) { argument 285 if (!strcmp(group, lp->l_groupname)) 290 (lp = read_for_group(this, group)) == NULL) 357 read_for_group(struct irs_ng *this, const char *group) { argument 439 if (!strcmp(lp->l_groupname, group)) [all...] |
/osnet-11/usr/src/lib/libsocket/inet/ |
H A D | sourcefilter.c | 41 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...] |
/osnet-11/usr/src/lib/librdc/common/ |
H A D | librdc.h | 57 char group[NSC_MAXPATH]; member in struct:rdcconfig_s 79 const char *mode, const char *group, const char *ctag, const char *options, 101 extern rdc_rc_t *rdc_reconfig_group(rdcconfig_t *rdc, char *group);
|
/osnet-11/usr/src/lib/libresolv2/common/isc/ |
H A D | logging_p.h | 28 gid_t group; member in struct:log_file_desc
|
/osnet-11/usr/src/lib/libsec/common/ |
H A D | aclcheck.c | 34 * If there are any GROUP entries, then the group id must be unique. 56 struct entry group; member in struct:entry_stat 142 cnt = (tally.group.count)++; 143 idp = &(tally.group.id); 211 /* If there are group or user entries, there must be one class entry */ 212 if (tally.user.count > 0 || tally.group.count > 0) 274 if ((tallyp->group).count > 0) 275 free((tallyp->group).id);
|
/osnet-11/usr/src/lib/libparted/common/libparted/fs/ext2/ |
H A D | ext2_resize.c | 31 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/libshell/common/sh/ |
H A D | suid_exec.c | 24 * It must not have the set group id bit set. This program must be installed 35 * user and group id correctly, and then exec the shell. 120 * group, and setuid/gid bits correctly set. This copy of 204 /* compute the desired new effective user and group id */ 213 /* see if group needs setting */ 344 static void setids(int mode,int owner,int group) argument 347 setregid(rgroupid,group); 364 static void setids(int mode,uid_t owner,gid_t group) argument 418 * child takes on desired user and group. The only 424 if((mode & S_ISGID) && setgid(group) < [all...] |
/osnet-11/usr/src/lib/libsip/common/ |
H A D | sip_logging.c | 434 * Given a counter group and counter name within the group, returns the value 438 sip_get_counter_value(int group, int counter, void *cntval, size_t cntlen) argument 440 if (group != SIP_TRAFFIC_COUNTERS || cntval == NULL) 601 sip_enable_counters(int group) argument 603 if (group != SIP_TRAFFIC_COUNTERS) 624 sip_disable_counters(int group) argument 626 if (group != SIP_TRAFFIC_COUNTERS)
|