| /onnv/onnv-gate/usr/src/lib/libbc/inc/include/ |
| grp.h | 29 struct group { /* see getgrent(3) */ struct 37 struct group *getgrent(); 40 struct group *getgrgid(/* gid_t gid */); 41 struct group *getgrnam(/* char *name */);
|
| /onnv/onnv-gate/usr/src/common/crypto/ecc/ |
| ecl.c | 63 ECGroup *group; local 65 group = (ECGroup *) kmem_alloc(sizeof(ECGroup), kmflag); 67 group = (ECGroup *) malloc(sizeof(ECGroup)); 69 if (group == NULL) 71 group->constructed = MP_YES; 72 group->meth = NULL; 73 group->text = NULL; 74 MP_DIGITS(&group->curvea) = 0; 75 MP_DIGITS(&group->curveb) = 0; 76 MP_DIGITS(&group->genx) = 0 106 ECGroup *group = NULL; local 147 ECGroup *group = NULL; local 192 ECGroup *group = NULL; local 234 ECGroup *group = NULL; local 395 ECGroup *group = NULL; local [all...] |
| ec2_mont.c | 62 gf2m_Mdouble(mp_int *x, mp_int *z, const ECGroup *group, int kmflag) 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->meth->field_sqr(&t1, &t1, group->meth)) [all...] |
| 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->meth->field_mul(py, pz, S, group->meth)) [all...] |
| ecl_mult.c | 57 * of the group of points on the elliptic curve. Input and output values 60 ECPoint_mul(const ECGroup *group, const mp_int *k, const mp_int *px, 66 ARGCHK((k != NULL) && (group != NULL), MP_BADARG); 69 /* want scalar to be less than or equal to group order */ 70 if (mp_cmp(k, &group->order) > 0) { 72 MP_CHECKOK(mp_mod(k, &group->order, &kt)); 81 if (group->base_point_mul) { 82 MP_CHECKOK(group->base_point_mul(&kt, rx, ry, group)); 84 MP_CHECKOK(group- [all...] |
| 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->meth- [all...] |
| 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->meth->field_enc) [all...] |
| ecp_jac.c | 67 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->meth->field_mul(&z1, &z2, &z3, group->meth)) [all...] |
| ecp_test.c | 119 ECGroup_free(group); \ 120 group = ECGroup_fromHex(params, KM_SLEEP); \ 121 if (group == NULL) { \ 122 printf(" Error: could not construct group.\n"); \ 126 MP_CHECKOK( ectest_curve_GFp(group, ectestPrint, ectestTime, 1, KM_SLEEP) ); \ 132 ECGroup_free(group); \ 133 group = ECGroup_fromName(name, KM_SLEEP); \ 134 if (group == NULL) { \ 135 printf(" Warning: could not construct group.\n"); \ 138 MP_CHECKOK( ectest_curve_GFp(group, ectestPrint, ectestTime, 0, KM_SLEEP) ); 430 ECGroup *group = NULL; local [all...] |
| /onnv/onnv-gate/usr/src/head/ |
| grp.h | 48 struct group { /* see getgrent(3C) */ struct 57 extern struct group *getgrgid(gid_t); /* MT-unsafe */ 58 extern struct group *getgrnam(const char *); /* MT-unsafe */ 61 extern struct group *getgrent_r(struct group *, char *, int); 62 extern struct group *fgetgrent_r(FILE *, struct group *, char *, int); 65 extern struct group *fgetgrent(FILE *); /* MT-unsafe */ 72 extern struct group *getgrent(void); /* MT-unsafe */ 77 extern struct group *getgrgid(); /* MT-unsafe * [all...] |
| /onnv/onnv-gate/usr/src/lib/libbc/inc/5include/ |
| grp.h | 37 struct group { /* see getgrent(3) */ struct 51 struct group *getgrent(); 54 struct group *getgrgid(/* gid_t gid */); 55 struct group *getgrnam(/* char *name */);
|
| /onnv/onnv-gate/usr/src/common/openssl/crypto/ec/ |
| ec_lib.c | 123 void EC_GROUP_free(EC_GROUP *group) 125 if (!group) return; 127 if (group->meth->group_finish != 0) 128 group->meth->group_finish(group); 130 EC_EX_DATA_free_all_data(&group->extra_data); 132 if (group->generator != NULL) 133 EC_POINT_free(group->generator); 134 BN_free(&group->order); 135 BN_free(&group->cofactor) [all...] |
| ecp_mont.c | 115 int ec_GFp_mont_group_init(EC_GROUP *group) 119 ok = ec_GFp_simple_group_init(group); 120 group->field_data1 = NULL; 121 group->field_data2 = NULL; 126 void ec_GFp_mont_group_finish(EC_GROUP *group) 128 if (group->field_data1 != NULL) 130 BN_MONT_CTX_free(group->field_data1); 131 group->field_data1 = NULL; 133 if (group->field_data2 != NULL) 135 BN_free(group->field_data2) [all...] |
| ec2_mult.c | 82 static int gf2m_Mdouble(const EC_GROUP *group, BIGNUM *x, BIGNUM *z, BN_CTX *ctx) 92 if (!group->meth->field_sqr(group, x, x, ctx)) goto err; 93 if (!group->meth->field_sqr(group, t1, z, ctx)) goto err; 94 if (!group->meth->field_mul(group, z, x, t1, ctx)) goto err; 95 if (!group->meth->field_sqr(group, x, x, ctx)) goto err; 96 if (!group->meth->field_sqr(group, t1, t1, ctx)) goto err [all...] |
| ec2_smpt.c | 69 int ec_GF2m_simple_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *point, 99 if (!BN_GF2m_mod_arr(x, x_, group->poly)) goto err; 102 if (!BN_GF2m_mod_sqrt_arr(y, &group->b, group->poly, ctx)) goto err; 106 if (!group->meth->field_sqr(group, tmp, x, ctx)) goto err; 107 if (!group->meth->field_div(group, tmp, &group->b, tmp, ctx)) goto err; 108 if (!BN_GF2m_add(tmp, &group->a, tmp)) goto err [all...] |
| ecp_smpl.c | 130 int ec_GFp_simple_group_init(EC_GROUP *group) 132 BN_init(&group->field); 133 BN_init(&group->a); 134 BN_init(&group->b); 135 group->a_is_minus3 = 0; 140 void ec_GFp_simple_group_finish(EC_GROUP *group) 142 BN_free(&group->field); 143 BN_free(&group->a); 144 BN_free(&group->b); 148 void ec_GFp_simple_group_clear_finish(EC_GROUP *group) [all...] |
| ec_check.c | 59 int EC_GROUP_check(const EC_GROUP *group, BN_CTX *ctx) 79 if (!EC_GROUP_check_discriminant(group, ctx)) 86 if (group->generator == NULL) 91 if (!EC_POINT_is_on_curve(group, group->generator, ctx)) 98 if ((point = EC_POINT_new(group)) == NULL) goto err; 99 if (!EC_GROUP_get_order(group, order, ctx)) goto err; 106 if (!EC_POINT_mul(group, point, order, NULL, NULL, ctx)) goto err; 107 if (!EC_POINT_is_at_infinity(group, point))
|
| /onnv/onnv-gate/usr/src/cmd/oamuser/group/ |
| groupdel.c | 39 * groupdel group 43 * group - a character string group name 54 char *group; /* group name from command line */ local 62 group = argv[1]; 64 switch (retval = del_group(group)) { 69 errmsg(M_NO_GROUP, group);
|
| /onnv/onnv-gate/usr/src/cmd/oamuser/lib/ |
| vgname.c | 42 * validate string given as group name. 45 valid_gname(char *group, struct group **gptr, int *warning) 47 struct group *t_gptr; 48 char *ptr = group; 54 if (!group || !*group) 74 if ((t_gptr = getgrnam(group)) != NULL) {
|
| vgroup.c | 45 extern int valid_gid(gid_t, struct group **); 50 * validate a group name or number and return the appropriate 51 * group structure for it. 54 valid_group(char *group, struct group **gptr, int *warning) 59 struct group *grp; 63 if (!isalldigit(group)) 64 return (valid_gname(group, gptr, warning)); 67 * There are only digits in group name. 71 l = strtol(group, &ptr, 10) [all...] |
| /onnv/onnv-gate/usr/src/cmd/krb5/kadmin/gui/ |
| KdcGuiMain.java | 42 import sunsoft.jws.visual.rt.base.Group; 65 Group group = new KdcGui(); local 66 helper.main(group, args); 76 Group group = new KdcGui(); local 77 helper.init(this, group);
|
| /onnv/onnv-gate/usr/src/cmd/krb5/kadmin/gui/visualrt/sunsoft/jws/visual/rt/base/ |
| ExternalCallOut.java | 40 * something with a Group object once its been created 48 * Set the Group that the main class has loaded and initialized. 50 public void initExternal(Group group);
|
| /onnv/onnv-gate/usr/src/cmd/mdb/common/modules/genunix/ |
| group.c | 30 * Display group information and walk all elements of a group 33 #include "group.h" 36 #include <sys/group.h> 39 * Display group information 44 group(uintptr_t addr, uint_t flags, int argc, const mdb_arg_t *argv) function 46 group_t group; local 69 if (mdb_vread(&group, sizeof (struct group), addr) == -1) { 70 mdb_warn("unable to read 'group' at %p", addr) 105 group_t group; local [all...] |
| /onnv/onnv-gate/usr/src/cmd/picl/plugins/sun4u/ents/devtree/ |
| picl_asr.conf | 32 dimm0 memory-module-group unused /memory-controller@0,0/memory-module-group I?ID=0 33 dimm0 memory-module disabled /memory-controller@0,0/memory-module-group?ID=0/memory-module I?ID=0 34 dimm0 memory-module unused /memory-controller@0,0/memory-module-group?ID=0/memory-module I?ID=1 35 dimm1 memory-module-group unused /memory-controller@0,0/memory-module-group I?ID=0 36 dimm1 memory-module unused /memory-controller@0,0/memory-module-group?ID=0/memory-module I?ID=0 37 dimm1 memory-module disabled /memory-controller@0,0/memory-module-group?ID=0/memory-module I?ID=1 38 dimm2 memory-module-group unused /memory-controller@0,0/memory-module-group I?ID= [all...] |
| /onnv/onnv-gate/usr/src/cmd/picl/plugins/sun4u/mpxu/devtree/ |
| picl_asr.conf | 32 dimm0 memory-module-group unused /memory-controller@0,0/memory-module-group I?ID=0 33 dimm0 memory-module disabled /memory-controller@0,0/memory-module-group?ID=0/memory-module I?ID=0 34 dimm0 memory-module unused /memory-controller@0,0/memory-module-group?ID=0/memory-module I?ID=1 35 dimm1 memory-module-group unused /memory-controller@0,0/memory-module-group I?ID=0 36 dimm1 memory-module unused /memory-controller@0,0/memory-module-group?ID=0/memory-module I?ID=0 37 dimm1 memory-module disabled /memory-controller@0,0/memory-module-group?ID=0/memory-module I?ID=1 38 dimm2 memory-module-group unused /memory-controller@0,0/memory-module-group I?ID= [all...] |