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

1234567891011>>

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/libpwdgrp/
H A Duidgid_get.c34 struct group *gr;
35 char *user, *group; local
39 group = strchr(ug, ':');
40 if (group) {
41 int sz = (++group) - ug;
65 if (group) {
67 n = bb_strtou(group, NULL, 10);
73 gr = getgrnam(group);
82 * ":group" sets gid only
83 * "user:" sets uid and gid (to user's primary group i
89 char *group; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/crypto/ec/
H A Dec_lib.c107 void EC_GROUP_free(EC_GROUP *group) argument
109 if (!group) return;
111 if (group->meth->group_finish != 0)
112 group->meth->group_finish(group);
114 EC_GROUP_free_extra_data(group);
116 OPENSSL_free(group);
120 void EC_GROUP_clear_free(EC_GROUP *group) argument
122 if (!group) return;
124 if (group
170 EC_GROUP_method_of(const EC_GROUP *group) argument
176 EC_GROUP_set_curve_GFp(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
187 EC_GROUP_get_curve_GFp(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) argument
198 EC_GROUP_set_generator(EC_GROUP *group, const EC_POINT *generator, const BIGNUM *order, const BIGNUM *cofactor) argument
209 EC_GROUP_get0_generator(const EC_GROUP *group) argument
220 EC_GROUP_get_order(const EC_GROUP *group, BIGNUM *order, BN_CTX *ctx) argument
231 EC_GROUP_get_cofactor(const EC_GROUP *group, BIGNUM *cofactor, BN_CTX *ctx) argument
243 EC_GROUP_set_extra_data(EC_GROUP *group, void *extra_data, void *(*extra_data_dup_func)(void *), void (*extra_data_free_func)(void *), void (*extra_data_clear_free_func)(void *)) argument
264 EC_GROUP_get_extra_data(const EC_GROUP *group, void *(*extra_data_dup_func)(void *), void (*extra_data_free_func)(void *), void (*extra_data_clear_free_func)(void *)) argument
282 EC_GROUP_free_extra_data(EC_GROUP *group) argument
294 EC_GROUP_clear_free_extra_data(EC_GROUP *group) argument
310 EC_POINT_new(const EC_GROUP *group) argument
391 EC_POINT_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
407 EC_POINT_set_Jprojective_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, const BIGNUM *z, BN_CTX *ctx) argument
424 EC_POINT_get_Jprojective_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *ctx) argument
441 EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
458 EC_POINT_get_affine_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
475 EC_POINT_set_compressed_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, int y_bit, BN_CTX *ctx) argument
492 EC_POINT_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, unsigned char *buf, size_t len, BN_CTX *ctx) argument
509 EC_POINT_oct2point(const EC_GROUP *group, EC_POINT *point, const unsigned char *buf, size_t len, BN_CTX *ctx) argument
526 EC_POINT_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
542 EC_POINT_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx) argument
558 EC_POINT_invert(const EC_GROUP *group, EC_POINT *a, BN_CTX *ctx) argument
574 EC_POINT_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
590 EC_POINT_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
606 EC_POINT_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
622 EC_POINT_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
638 EC_POINTs_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx) argument
[all...]
H A Decp_mont.c104 int ec_GFp_mont_group_init(EC_GROUP *group) argument
108 ok = ec_GFp_simple_group_init(group);
109 group->field_data1 = NULL;
110 group->field_data2 = NULL;
115 int ec_GFp_mont_group_set_curve_GFp(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
122 if (group->field_data1 != NULL)
124 BN_MONT_CTX_free(group->field_data1);
125 group->field_data1 = NULL;
127 if (group->field_data2 != NULL)
129 BN_free(group
175 ec_GFp_mont_group_finish(EC_GROUP *group) argument
191 ec_GFp_mont_group_clear_finish(EC_GROUP *group) argument
246 ec_GFp_mont_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
258 ec_GFp_mont_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
270 ec_GFp_mont_field_encode(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
282 ec_GFp_mont_field_decode(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
294 ec_GFp_mont_field_set_to_one(const EC_GROUP *group, BIGNUM *r, BN_CTX *ctx) argument
[all...]
H A Decp_smpl.c106 int ec_GFp_simple_group_init(EC_GROUP *group) argument
108 BN_init(&group->field);
109 BN_init(&group->a);
110 BN_init(&group->b);
111 group->a_is_minus3 = 0;
112 group->generator = NULL;
113 BN_init(&group->order);
114 BN_init(&group->cofactor);
119 void ec_GFp_simple_group_finish(EC_GROUP *group) argument
121 BN_free(&group
131 ec_GFp_simple_group_clear_finish(EC_GROUP *group) argument
180 ec_GFp_simple_group_set_curve_GFp(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
235 ec_GFp_simple_group_get_curve_GFp(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) argument
287 ec_GFp_simple_group_set_generator(EC_GROUP *group, const EC_POINT *generator, const BIGNUM *order, const BIGNUM *cofactor) argument
317 ec_GFp_simple_group_get0_generator(const EC_GROUP *group) argument
323 ec_GFp_simple_group_get_order(const EC_GROUP *group, BIGNUM *order, BN_CTX *ctx) argument
332 ec_GFp_simple_group_get_cofactor(const EC_GROUP *group, BIGNUM *cofactor, BN_CTX *ctx) argument
380 ec_GFp_simple_point_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
387 ec_GFp_simple_set_Jprojective_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, const BIGNUM *z, BN_CTX *ctx) argument
447 ec_GFp_simple_get_Jprojective_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *ctx) argument
500 ec_GFp_simple_point_set_affine_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
514 ec_GFp_simple_point_get_affine_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
629 ec_GFp_simple_set_compressed_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x_, int y_bit, BN_CTX *ctx) argument
756 ec_GFp_simple_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, unsigned char *buf, size_t len, BN_CTX *ctx) argument
882 ec_GFp_simple_oct2point(const EC_GROUP *group, EC_POINT *point, const unsigned char *buf, size_t len, BN_CTX *ctx) argument
992 ec_GFp_simple_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
1156 ec_GFp_simple_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx) argument
1273 ec_GFp_simple_invert(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
1283 ec_GFp_simple_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
1289 ec_GFp_simple_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
1391 ec_GFp_simple_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
1499 ec_GFp_simple_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
1538 ec_GFp_simple_points_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx) argument
1708 ec_GFp_simple_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
1714 ec_GFp_simple_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
[all...]
H A Decp_nist.c103 int ec_GFp_nist_group_init(EC_GROUP *group) argument
107 ok = ec_GFp_simple_group_init(group);
108 group->field_data1 = NULL;
113 int ec_GFp_nist_group_set_curve_GFp(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx);
117 void ec_GFp_nist_group_finish(EC_GROUP *group);
121 void ec_GFp_nist_group_clear_finish(EC_GROUP *group);
129 int ec_GFp_nist_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx);
133 int ec_GFp_nist_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx);
H A Decp_recp.c102 int ec_GFp_recp_group_init(EC_GROUP *group) argument
106 ok = ec_GFp_simple_group_init(group);
107 group->field_data1 = NULL;
112 int ec_GFp_recp_group_set_curve_GFp(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx);
116 void ec_GFp_recp_group_finish(EC_GROUP *group);
120 void ec_GFp_recp_group_clear_finish(EC_GROUP *group);
128 int ec_GFp_recp_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx);
132 int ec_GFp_recp_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx);
H A Dectest.c86 static void timings(EC_GROUP *group, int multi, BN_CTX *ctx)
97 if (!EC_GROUP_get_curve_GFp(group, s, NULL, NULL, ctx)) ABORT;
99 if (!EC_GROUP_get_order(group, s, ctx)) ABORT;
103 P = EC_POINT_new(group);
105 EC_POINT_copy(P, EC_GROUP_get0_generator(group));
117 if (!EC_POINT_mul(group, P, s, multi ? P : NULL, multi ? s0 : NULL, ctx)) ABORT;
154 EC_GROUP *group; local
190 group = EC_GROUP_new(EC_GFp_mont_method()); /* applications should use EC_GROUP_new_curve_GFp
192 if (!group) ABORT;
194 if (!EC_GROUP_set_curve_GFp(group,
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/crypto/ec/
H A Dec_lib.c123 void EC_GROUP_free(EC_GROUP *group) argument
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
144 EC_GROUP_clear_free(EC_GROUP *group) argument
272 EC_GROUP_method_of(const EC_GROUP *group) argument
284 EC_GROUP_set_generator(EC_GROUP *group, const EC_POINT *generator, const BIGNUM *order, const BIGNUM *cofactor) argument
313 EC_GROUP_get0_generator(const EC_GROUP *group) argument
319 EC_GROUP_get_order(const EC_GROUP *group, BIGNUM *order, BN_CTX *ctx) argument
328 EC_GROUP_get_cofactor(const EC_GROUP *group, BIGNUM *cofactor, BN_CTX *ctx) argument
337 EC_GROUP_set_curve_name(EC_GROUP *group, int nid) argument
343 EC_GROUP_get_curve_name(const EC_GROUP *group) argument
349 EC_GROUP_set_asn1_flag(EC_GROUP *group, int flag) argument
355 EC_GROUP_get_asn1_flag(const EC_GROUP *group) argument
361 EC_GROUP_set_point_conversion_form(EC_GROUP *group, point_conversion_form_t form) argument
368 EC_GROUP_get_point_conversion_form(const EC_GROUP *group) argument
374 EC_GROUP_set_seed(EC_GROUP *group, const unsigned char *p, size_t len) argument
395 EC_GROUP_get0_seed(const EC_GROUP *group) argument
401 EC_GROUP_get_seed_len(const EC_GROUP *group) argument
407 EC_GROUP_set_curve_GFp(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
418 EC_GROUP_get_curve_GFp(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) argument
429 EC_GROUP_set_curve_GF2m(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
440 EC_GROUP_get_curve_GF2m(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) argument
451 EC_GROUP_get_degree(const EC_GROUP *group) argument
462 EC_GROUP_check_discriminant(const EC_GROUP *group, BN_CTX *ctx) argument
693 EC_POINT_new(const EC_GROUP *group) argument
768 EC_POINT_dup(const EC_POINT *a, const EC_GROUP *group) argument
793 EC_POINT_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
809 EC_POINT_set_Jprojective_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, const BIGNUM *z, BN_CTX *ctx) argument
826 EC_POINT_get_Jprojective_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *ctx) argument
843 EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
860 EC_POINT_set_affine_coordinates_GF2m(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
877 EC_POINT_get_affine_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
894 EC_POINT_get_affine_coordinates_GF2m(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
911 EC_POINT_set_compressed_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, int y_bit, BN_CTX *ctx) argument
928 EC_POINT_set_compressed_coordinates_GF2m(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, int y_bit, BN_CTX *ctx) argument
945 EC_POINT_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, unsigned char *buf, size_t len, BN_CTX *ctx) argument
962 EC_POINT_oct2point(const EC_GROUP *group, EC_POINT *point, const unsigned char *buf, size_t len, BN_CTX *ctx) argument
979 EC_POINT_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
995 EC_POINT_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx) argument
1011 EC_POINT_invert(const EC_GROUP *group, EC_POINT *a, BN_CTX *ctx) argument
1027 EC_POINT_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
1043 EC_POINT_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
1059 EC_POINT_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
1075 EC_POINT_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
1091 EC_POINTs_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx) argument
1118 EC_POINTs_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *ctx) argument
1128 EC_POINT_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *g_scalar, const EC_POINT *point, const BIGNUM *p_scalar, BN_CTX *ctx) argument
1142 EC_GROUP_precompute_mult(EC_GROUP *group, BN_CTX *ctx) argument
1154 EC_GROUP_have_precompute_mult(const EC_GROUP *group) argument
[all...]
H A Decp_mont.c115 int ec_GFp_mont_group_init(EC_GROUP *group) argument
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) argument
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
142 ec_GFp_mont_group_clear_finish(EC_GROUP *group) argument
197 ec_GFp_mont_group_set_curve(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
257 ec_GFp_mont_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
269 ec_GFp_mont_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
281 ec_GFp_mont_field_encode(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
293 ec_GFp_mont_field_decode(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
305 ec_GFp_mont_field_set_to_one(const EC_GROUP *group, BIGNUM *r, BN_CTX *ctx) argument
[all...]
H A Dec2_mult.c82 static int gf2m_Mdouble(const EC_GROUP *group, BIGNUM *x, BIGNUM *z, BN_CTX *ctx) argument
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
113 gf2m_Madd(const EC_GROUP *group, const BIGNUM *x, BIGNUM *x1, BIGNUM *z1, const BIGNUM *x2, const BIGNUM *z2, BN_CTX *ctx) argument
150 gf2m_Mxy(const EC_GROUP *group, const BIGNUM *x, const BIGNUM *y, BIGNUM *x1, BIGNUM *z1, BIGNUM *x2, BIGNUM *z2, BN_CTX *ctx) argument
215 ec_GF2m_montgomery_point_multiply(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, const EC_POINT *point, BN_CTX *ctx) argument
314 ec_GF2m_simple_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *ctx) argument
372 ec_GF2m_precompute_mult(EC_GROUP *group, BN_CTX *ctx) argument
377 ec_GF2m_have_precompute_mult(const EC_GROUP *group) argument
[all...]
H A Dec2_smpt.c69 int ec_GF2m_simple_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *point, argument
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
[all...]
H A Decp_smpl.c130 int ec_GFp_simple_group_init(EC_GROUP *group) argument
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) argument
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) argument
168 ec_GFp_simple_group_set_curve(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
223 ec_GFp_simple_group_get_curve(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) argument
274 ec_GFp_simple_group_get_degree(const EC_GROUP *group) argument
280 ec_GFp_simple_group_check_discriminant(const EC_GROUP *group, BN_CTX *ctx) argument
386 ec_GFp_simple_point_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
394 ec_GFp_simple_set_Jprojective_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, const BIGNUM *z, BN_CTX *ctx) argument
454 ec_GFp_simple_get_Jprojective_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *ctx) argument
507 ec_GFp_simple_point_set_affine_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
521 ec_GFp_simple_point_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
637 ec_GFp_simple_set_compressed_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x_, int y_bit, BN_CTX *ctx) argument
766 ec_GFp_simple_point2oct(const EC_GROUP *group, const EC_POINT *point, point_conversion_form_t form, unsigned char *buf, size_t len, BN_CTX *ctx) argument
892 ec_GFp_simple_oct2point(const EC_GROUP *group, EC_POINT *point, const unsigned char *buf, size_t len, BN_CTX *ctx) argument
1002 ec_GFp_simple_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
1166 ec_GFp_simple_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx) argument
1283 ec_GFp_simple_invert(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
1293 ec_GFp_simple_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
1299 ec_GFp_simple_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
1390 ec_GFp_simple_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
1498 ec_GFp_simple_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
1537 ec_GFp_simple_points_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx) argument
1707 ec_GFp_simple_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
1713 ec_GFp_simple_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
[all...]
H A Dec_check.c59 int EC_GROUP_check(const EC_GROUP *group, BN_CTX *ctx) argument
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))
H A Dectest.c119 static void timings(EC_GROUP *group, int type, BN_CTX *ctx)
130 fprintf(stdout, "Timings for %d-bit field, ", EC_GROUP_get_degree(group));
131 if (!EC_GROUP_get_order(group, s, ctx)) ABORT;
135 P = EC_POINT_new(group);
137 EC_POINT_copy(P, EC_GROUP_get0_generator(group));
155 if (!EC_POINT_mul(group, P, (type != TIMING_RAND_PT) ? r[i] : NULL,
202 EC_GROUP *group; local
224 group = EC_GROUP_new(EC_GFp_mont_method()); /* applications should use EC_GROUP_new_curve_GFp
226 if (!group) ABORT;
228 if (!EC_GROUP_set_curve_GFp(group,
815 EC_GROUP *group; local
1268 EC_GROUP *group = NULL; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sparc64/kernel/
H A Dhvapi.c20 unsigned long group; member in struct:api_info
29 { .group = HV_GRP_SUN4V, .flags = FLAG_PRE_API },
30 { .group = HV_GRP_CORE, .flags = FLAG_PRE_API },
31 { .group = HV_GRP_INTR, },
32 { .group = HV_GRP_SOFT_STATE, },
33 { .group = HV_GRP_PCI, .flags = FLAG_PRE_API },
34 { .group = HV_GRP_LDOM, },
35 { .group = HV_GRP_SVC_CHAN, .flags = FLAG_PRE_API },
36 { .group = HV_GRP_NCS, .flags = FLAG_PRE_API },
37 { .group
44 __get_info(unsigned long group) argument
81 sun4v_hvapi_register(unsigned long group, unsigned long major, unsigned long *minor) argument
132 sun4v_hvapi_unregister(unsigned long group) argument
145 sun4v_hvapi_get(unsigned long group, unsigned long *major, unsigned long *minor) argument
169 unsigned long group, major, minor; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/dist/
H A Ds_javadoc_merge11 return '%s%s' % (m.group('field_name'), paramre.sub('\g<param_type>\g<comma>', m.group('params') or ''))
16 javadoc[m.group('class_name')] = m.group('javadoc')
18 javadoc[fieldsig(m)] = m.group('javadoc')
23 #print "Looking up", m.group('class_name')
24 return '%s%s%s%s %s' % (javadoc.get(m.group('class_name'), '/** TODO */\n'), m.group('mods'), (m.group('class_type') or ''), m.group('class_nam
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/busybox-1.x/include/
H A Dgrp_.h33 /* The group structure. */
34 struct group { struct
43 /* Set the group set for the current user to GROUPS (N of them). */
68 /* Rewind the group-file stream. */
71 /* Close the group-file stream. */
74 /* Read an entry from the group-file stream, opening it if necessary. */
75 extern struct group *getgrent(void);
77 /* Read a group entry from STREAM. */
78 extern struct group *fgetgrent(FILE *__stream);
81 extern int putgrent(__const struct group *__restric
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/examples/LDAP/smbldap-tools-0.8.7/
H A Dsmbldap-groupshow42 print "Usage: $0 [-?] group\n";
48 my $group = $ARGV[0];
52 my $lines = read_group($group);
54 print "$0: group $group doesn't exist\n";
69 smbldap-groupshow - Display group informations
77 The smbldap-groupshow command displays informations associated with the given group.
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/infiniband/core/
H A Dmulticast.c104 struct mcast_group *group; member in struct:mcast_member
120 struct mcast_group *group; local
124 group = rb_entry(node, struct mcast_group, node);
125 ret = memcmp(mgid->raw, group->rec.mgid.raw, sizeof *mgid);
127 return group;
138 struct mcast_group *group,
150 ret = memcmp(group->rec.mgid.raw, cur_group->rec.mgid.raw,
151 sizeof group->rec.mgid);
161 rb_link_node(&group->node, parent, link);
162 rb_insert_color(&group
137 mcast_insert(struct mcast_port *port, struct mcast_group *group, int allow_duplicates) argument
172 release_group(struct mcast_group *group) argument
195 struct mcast_group *group = member->group; local
214 adjust_membership(struct mcast_group *group, u8 join_state, int inc) argument
229 get_leave_state(struct mcast_group *group) argument
316 send_join(struct mcast_group *group, struct mcast_member *member) argument
335 send_leave(struct mcast_group *group, u8 leave_state) argument
358 join_group(struct mcast_group *group, struct mcast_member *member, u8 join_state) argument
369 fail_join(struct mcast_group *group, struct mcast_member *member, int status) argument
378 process_group_error(struct mcast_group *group) argument
408 struct mcast_group *group; local
473 process_join_error(struct mcast_group *group, int status) argument
496 struct mcast_group *group = context; local
515 struct mcast_group *group = context; local
523 struct mcast_group *group, *cur_group; local
626 struct mcast_group *group; local
659 struct mcast_group *group; local
712 struct mcast_group *group; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/examples/LDAP/smbldap-tools-0.8.7/doc/
H A Dsmbldap-migrate-groups26 # group dump and populate Unix groups
27 # Reads group dump on stdin
39 my ($group, $mb) = @_;
42 if (!(@members = group_get_members($group))) {
53 print "recursive group not added : $gname\n";
60 # given a group dn and a list of members, update the group
63 my ($group, $dn_line, @members, $recgroup) = @_;
72 print "recursive group not added : $gname\n";
75 print "recursive group no
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/sys-ia64/
H A DMakefile9 $(LD) $(LINKFLAGS) --start-group $^ --end-group -o $@
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/testsuite/nsswitch/
H A Dgetgrnam.exp18 foreach {group} $group_list {
19 set output [util_start "$srcdir/$subdir/getgrnam" "\"$group\"" ""]
24 pass "getgrnam $group"
26 fail "getgrnam $group"
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/openssl/test/
H A Dectest.c86 static void timings(EC_GROUP *group, int multi, BN_CTX *ctx)
97 if (!EC_GROUP_get_curve_GFp(group, s, NULL, NULL, ctx)) ABORT;
99 if (!EC_GROUP_get_order(group, s, ctx)) ABORT;
103 P = EC_POINT_new(group);
105 EC_POINT_copy(P, EC_GROUP_get0_generator(group));
117 if (!EC_POINT_mul(group, P, s, multi ? P : NULL, multi ? s0 : NULL, ctx)) ABORT;
154 EC_GROUP *group; local
190 group = EC_GROUP_new(EC_GFp_mont_method()); /* applications should use EC_GROUP_new_curve_GFp
192 if (!group) ABORT;
194 if (!EC_GROUP_set_curve_GFp(group,
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/packages/
H A DMakefile.am21 Symbian/group/bld.inf \
22 Symbian/group/curl.iby \
23 Symbian/group/curl.mmp \
24 Symbian/group/curl.pkg \
25 Symbian/group/libcurl.iby \
26 Symbian/group/libcurl.mmp \
27 Symbian/group/libcurl.pkg \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/openssl-0.9.8e/test/
H A Dectest.c119 static void timings(EC_GROUP *group, int type, BN_CTX *ctx)
130 fprintf(stdout, "Timings for %d-bit field, ", EC_GROUP_get_degree(group));
131 if (!EC_GROUP_get_order(group, s, ctx)) ABORT;
135 P = EC_POINT_new(group);
137 EC_POINT_copy(P, EC_GROUP_get0_generator(group));
155 if (!EC_POINT_mul(group, P, (type != TIMING_RAND_PT) ? r[i] : NULL,
202 EC_GROUP *group; local
224 group = EC_GROUP_new(EC_GFp_mont_method()); /* applications should use EC_GROUP_new_curve_GFp
226 if (!group) ABORT;
228 if (!EC_GROUP_set_curve_GFp(group,
815 EC_GROUP *group; local
1268 EC_GROUP *group = NULL; local
[all...]

Completed in 107 milliseconds

1234567891011>>