Searched refs:group (Results 376 - 400 of 2184) sorted by relevance

<<11121314151617181920>>

/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/openssl/crypto/ec/
H A Dec_mult.c79 const EC_GROUP *group; /* parent EC_GROUP object */ member in struct:ec_pre_comp_st
96 static EC_PRE_COMP *ec_pre_comp_new(const EC_GROUP *group) argument
100 if (!group)
108 ret->group = group;
330 int ec_wNAF_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, argument
359 if (group->meth != r->meth) {
365 return EC_POINT_set_to_infinity(group, r);
369 if (group->meth != points[i]->meth) {
382 generator = EC_GROUP_get0_generator(group);
741 ec_wNAF_precompute_mult(EC_GROUP *group, BN_CTX *ctx) argument
905 ec_wNAF_have_precompute_mult(const EC_GROUP *group) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/openssl-1.0.0q/crypto/ec/
H A Dec_mult.c83 const EC_GROUP *group; /* parent EC_GROUP object */ member in struct:ec_pre_comp_st
98 static EC_PRE_COMP *ec_pre_comp_new(const EC_GROUP *group) argument
102 if (!group)
111 ret->group = group;
346 int ec_wNAF_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, argument
372 if (group->meth != r->meth)
380 return EC_POINT_set_to_infinity(group, r);
385 if (group->meth != points[i]->meth)
401 generator = EC_GROUP_get0_generator(group);
766 ec_wNAF_precompute_mult(EC_GROUP *group, BN_CTX *ctx) argument
935 ec_wNAF_have_precompute_mult(const EC_GROUP *group) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/openssl/crypto/ec/
H A Dec_mult.c79 const EC_GROUP *group; /* parent EC_GROUP object */ member in struct:ec_pre_comp_st
96 static EC_PRE_COMP *ec_pre_comp_new(const EC_GROUP *group) argument
100 if (!group)
108 ret->group = group;
330 int ec_wNAF_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, argument
359 if (group->meth != r->meth) {
365 return EC_POINT_set_to_infinity(group, r);
369 if (group->meth != points[i]->meth) {
382 generator = EC_GROUP_get0_generator(group);
741 ec_wNAF_precompute_mult(EC_GROUP *group, BN_CTX *ctx) argument
905 ec_wNAF_have_precompute_mult(const EC_GROUP *group) argument
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/avahi-0.6.31/avahi-client/
H A Dpublish.h42 /** An entry group object */
48 AvahiEntryGroupState state /**< The new state of the entry group */,
56 AvahiEntryGroupCallback callback /**< This callback is called whenever the state of this entry group changes. May not be NULL. Please note that this function is called for the first time from within the avahi_entry_group_new() context! Thus, in the callback you should not make use of global variables that are initialized only after your call to avahi_entry_group_new(). A common mistake is to store the AvahiEntryGroup pointer returned by avahi_entry_group_new() in a global variable and assume that this global variable already contains the valid pointer when the callback is called for the first time. A work-around for this is to always use the AvahiEntryGroup pointer passed to the callback function instead of the global pointer. */,
66 /** Commit an AvahiEntryGroup. The entries in the entry group are now registered on the network. Commiting empty entry groups is considered an error. */
87 AvahiEntryGroup *group,
100 AvahiEntryGroup *group,
111 /** Add a subtype for a service. The service should already be existent in the entry group. You may add as many subtypes for a service as you wish. */
113 AvahiEntryGroup *group,
122 /** Update a TXT record for an existing service. The service should already be existent in the entry group. */
147 AvahiEntryGroup *group,
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/openssl-1.0.0q/crypto/ecdsa/
H A Decs_ossl.c95 const EC_GROUP *group; local
98 if (eckey == NULL || (group = EC_KEY_get0_group(eckey)) == NULL)
124 if ((tmp_point = EC_POINT_new(group)) == NULL)
129 if (!EC_GROUP_get_order(group, order, ctx))
156 if (!EC_POINT_mul(group, tmp_point, k, NULL, NULL, ctx))
161 if (EC_METHOD_get_field_type(EC_GROUP_method_of(group)) == NID_X9_62_prime_field)
163 if (!EC_POINT_get_affine_coordinates_GFp(group,
172 if (!EC_POINT_get_affine_coordinates_GF2m(group,
227 const EC_GROUP *group; local
233 group
358 const EC_GROUP *group; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/avahi-0.6.31/avahi-client/
H A Dpublish.h42 /** An entry group object */
48 AvahiEntryGroupState state /**< The new state of the entry group */,
56 AvahiEntryGroupCallback callback /**< This callback is called whenever the state of this entry group changes. May not be NULL. Please note that this function is called for the first time from within the avahi_entry_group_new() context! Thus, in the callback you should not make use of global variables that are initialized only after your call to avahi_entry_group_new(). A common mistake is to store the AvahiEntryGroup pointer returned by avahi_entry_group_new() in a global variable and assume that this global variable already contains the valid pointer when the callback is called for the first time. A work-around for this is to always use the AvahiEntryGroup pointer passed to the callback function instead of the global pointer. */,
66 /** Commit an AvahiEntryGroup. The entries in the entry group are now registered on the network. Commiting empty entry groups is considered an error. */
87 AvahiEntryGroup *group,
100 AvahiEntryGroup *group,
111 /** Add a subtype for a service. The service should already be existent in the entry group. You may add as many subtypes for a service as you wish. */
113 AvahiEntryGroup *group,
122 /** Update a TXT record for an existing service. The service should already be existent in the entry group. */
147 AvahiEntryGroup *group,
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/avahi-0.6.31/avahi-client/
H A Dpublish.h42 /** An entry group object */
48 AvahiEntryGroupState state /**< The new state of the entry group */,
56 AvahiEntryGroupCallback callback /**< This callback is called whenever the state of this entry group changes. May not be NULL. Please note that this function is called for the first time from within the avahi_entry_group_new() context! Thus, in the callback you should not make use of global variables that are initialized only after your call to avahi_entry_group_new(). A common mistake is to store the AvahiEntryGroup pointer returned by avahi_entry_group_new() in a global variable and assume that this global variable already contains the valid pointer when the callback is called for the first time. A work-around for this is to always use the AvahiEntryGroup pointer passed to the callback function instead of the global pointer. */,
66 /** Commit an AvahiEntryGroup. The entries in the entry group are now registered on the network. Commiting empty entry groups is considered an error. */
87 AvahiEntryGroup *group,
100 AvahiEntryGroup *group,
111 /** Add a subtype for a service. The service should already be existent in the entry group. You may add as many subtypes for a service as you wish. */
113 AvahiEntryGroup *group,
122 /** Update a TXT record for an existing service. The service should already be existent in the entry group. */
147 AvahiEntryGroup *group,
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/samba-3.5.8/source4/heimdal/lib/wind/
H A Dgen-errorlist.py91 start = int(m.group(1), 0x10)
92 end = int(m.group(2), 0x10)
93 desc = m.group(3)
98 trans.append([int(m.group(1), 0x10), 1, m.group(2), [t]])
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/samba-3.5.8/source4/heimdal/lib/wind/
H A Dgen-errorlist.py91 start = int(m.group(1), 0x10)
92 end = int(m.group(2), 0x10)
93 desc = m.group(3)
98 trans.append([int(m.group(1), 0x10), 1, m.group(2), [t]])
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/openssl-1.0.0q/crypto/ecdsa/
H A Decs_ossl.c95 const EC_GROUP *group; local
98 if (eckey == NULL || (group = EC_KEY_get0_group(eckey)) == NULL)
124 if ((tmp_point = EC_POINT_new(group)) == NULL)
129 if (!EC_GROUP_get_order(group, order, ctx))
156 if (!EC_POINT_mul(group, tmp_point, k, NULL, NULL, ctx))
161 if (EC_METHOD_get_field_type(EC_GROUP_method_of(group)) == NID_X9_62_prime_field)
163 if (!EC_POINT_get_affine_coordinates_GFp(group,
172 if (!EC_POINT_get_affine_coordinates_GF2m(group,
227 const EC_GROUP *group; local
233 group
358 const EC_GROUP *group; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba-3.5.8/source4/heimdal/lib/wind/
H A Dgen-errorlist.py91 start = int(m.group(1), 0x10)
92 end = int(m.group(2), 0x10)
93 desc = m.group(3)
98 trans.append([int(m.group(1), 0x10), 1, m.group(2), [t]])
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/openssl-1.0.0q/crypto/ecdsa/
H A Decs_ossl.c95 const EC_GROUP *group; local
98 if (eckey == NULL || (group = EC_KEY_get0_group(eckey)) == NULL)
124 if ((tmp_point = EC_POINT_new(group)) == NULL)
129 if (!EC_GROUP_get_order(group, order, ctx))
156 if (!EC_POINT_mul(group, tmp_point, k, NULL, NULL, ctx))
161 if (EC_METHOD_get_field_type(EC_GROUP_method_of(group)) == NID_X9_62_prime_field)
163 if (!EC_POINT_get_affine_coordinates_GFp(group,
172 if (!EC_POINT_get_affine_coordinates_GF2m(group,
227 const EC_GROUP *group; local
233 group
358 const EC_GROUP *group; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/kernel/
H A Duid16.c19 SYSCALL_DEFINE3(chown16, const char __user *, filename, old_uid_t, user, old_gid_t, group)
21 long ret = sys_chown(filename, low2highuid(user), low2highgid(group));
23 asmlinkage_protect(3, ret, filename, user, group);
27 SYSCALL_DEFINE3(lchown16, const char __user *, filename, old_uid_t, user, old_gid_t, group)
29 long ret = sys_lchown(filename, low2highuid(user), low2highgid(group));
31 asmlinkage_protect(3, ret, filename, user, group);
35 SYSCALL_DEFINE3(fchown16, unsigned int, fd, old_uid_t, user, old_gid_t, group)
37 long ret = sys_fchown(fd, low2highuid(user), low2highgid(group));
39 asmlinkage_protect(3, ret, fd, user, group);
138 old_gid_t group; local
153 old_gid_t group; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/kernel/
H A Duid16.c19 SYSCALL_DEFINE3(chown16, const char __user *, filename, old_uid_t, user, old_gid_t, group)
21 long ret = sys_chown(filename, low2highuid(user), low2highgid(group));
23 asmlinkage_protect(3, ret, filename, user, group);
27 SYSCALL_DEFINE3(lchown16, const char __user *, filename, old_uid_t, user, old_gid_t, group)
29 long ret = sys_lchown(filename, low2highuid(user), low2highgid(group));
31 asmlinkage_protect(3, ret, filename, user, group);
35 SYSCALL_DEFINE3(fchown16, unsigned int, fd, old_uid_t, user, old_gid_t, group)
37 long ret = sys_fchown(fd, low2highuid(user), low2highgid(group));
39 asmlinkage_protect(3, ret, fd, user, group);
138 old_gid_t group; local
153 old_gid_t group; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6.36/fs/ext4/
H A Dialloc.c40 * blocks groups. Each group contains 1 bitmap block for blocks, 1 bitmap
43 * The file system contains group descriptors which are located after the
77 * allocation, essentially implementing a per-group read-only flag. */
79 ext4_error(sb, "Checksum bad for group %u", block_group);
293 * a directory, then a forward search is made for a block group with both
295 * the groups with above-average free space, that group with the fewest
299 * group to find a free inode.
307 ext4_group_t group; local
313 for (group = 0; group < ngroup
460 find_group_orlov(struct super_block *sb, struct inode *parent, ext4_group_t *group, int mode, const struct qstr *qstr) argument
605 find_group_other(struct super_block *sb, struct inode *parent, ext4_group_t *group, int mode) argument
709 ext4_claim_inode(struct super_block *sb, struct buffer_head *inode_bitmap_bh, unsigned long ino, ext4_group_t group, int mode) argument
794 ext4_group_t ngroups, group = 0; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/fs/ext4/
H A Dialloc.c40 * blocks groups. Each group contains 1 bitmap block for blocks, 1 bitmap
43 * The file system contains group descriptors which are located after the
77 * allocation, essentially implementing a per-group read-only flag. */
79 ext4_error(sb, "Checksum bad for group %u", block_group);
293 * a directory, then a forward search is made for a block group with both
295 * the groups with above-average free space, that group with the fewest
299 * group to find a free inode.
307 ext4_group_t group; local
313 for (group = 0; group < ngroup
460 find_group_orlov(struct super_block *sb, struct inode *parent, ext4_group_t *group, int mode, const struct qstr *qstr) argument
605 find_group_other(struct super_block *sb, struct inode *parent, ext4_group_t *group, int mode) argument
709 ext4_claim_inode(struct super_block *sb, struct buffer_head *inode_bitmap_bh, unsigned long ino, ext4_group_t group, int mode) argument
794 ext4_group_t ngroups, group = 0; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/quagga/bgpd/
H A Dbgpd.c657 /* Peer-group */
665 peer1 = listnode_head (peer->group->peer);
983 /* When this peer is a member of peer-group. */
984 if (peer->group)
986 if (peer->group->conf->as)
988 /* Return peer group's AS number. */
989 *as = peer->group->conf->as;
992 if (peer_sort (peer->group->conf) == BGP_PEER_IBGP)
1039 /* Activate the peer or peer group for specified AFI and SAFI. */
1090 struct peer_group *group; local
1357 peer_group_free(struct peer_group *group) argument
1365 struct peer_group *group; local
1379 struct peer_group *group; local
1410 peer_group2peer_config_copy(struct peer_group *group, struct peer *peer, afi_t afi, safi_t safi) argument
1668 struct peer_group *group; local
1693 peer_group_delete(struct peer_group *group) argument
1723 peer_group_remote_as_delete(struct peer_group *group) argument
1745 peer_group_bind(struct bgp *bgp, union sockunion *su, struct peer_group *group, afi_t afi, safi_t safi, as_t *as) argument
1888 peer_group_unbind(struct bgp *bgp, struct peer *peer, struct peer_group *group, afi_t afi, safi_t safi) argument
2100 struct peer_group *group; local
2485 struct peer_group *group; local
2589 struct peer_group *group; local
2721 struct peer_group *group; local
2780 struct peer_group *group; local
2843 struct peer_group *group; local
2913 struct peer_group *group; local
2982 struct peer_group *group; local
3063 struct peer_group *group; local
3119 struct peer_group *group; local
3182 struct peer_group *group; local
3203 struct peer_group *group; local
3229 struct peer_group *group; local
3270 struct peer_group *group; local
3389 struct peer_group *group; local
3422 struct peer_group *group; local
3450 struct peer_group *group; local
3528 struct peer_group *group; local
3685 struct peer_group *group; local
3732 struct peer_group *group; local
3797 struct peer_group *group; local
3845 struct peer_group *group; local
3891 struct peer_group *group; local
3953 struct peer_group *group; local
4003 struct peer_group *group; local
4046 struct peer_group *group; local
4110 struct peer_group *group; local
4158 struct peer_group *group; local
4205 struct peer_group *group; local
4266 struct peer_group *group; local
4307 struct peer_group *group; local
4347 struct peer_group *group; local
4386 struct peer_group *group; local
4439 struct peer_group *group; local
4470 struct peer_group *group; local
4536 struct peer_group *group; local
5172 struct peer_group *group; local
5212 struct peer_group *group; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/quagga/bgpd/
H A Dbgpd.c657 /* Peer-group */
665 peer1 = listnode_head (peer->group->peer);
983 /* When this peer is a member of peer-group. */
984 if (peer->group)
986 if (peer->group->conf->as)
988 /* Return peer group's AS number. */
989 *as = peer->group->conf->as;
992 if (peer_sort (peer->group->conf) == BGP_PEER_IBGP)
1039 /* Activate the peer or peer group for specified AFI and SAFI. */
1090 struct peer_group *group; local
1357 peer_group_free(struct peer_group *group) argument
1365 struct peer_group *group; local
1379 struct peer_group *group; local
1410 peer_group2peer_config_copy(struct peer_group *group, struct peer *peer, afi_t afi, safi_t safi) argument
1668 struct peer_group *group; local
1693 peer_group_delete(struct peer_group *group) argument
1723 peer_group_remote_as_delete(struct peer_group *group) argument
1745 peer_group_bind(struct bgp *bgp, union sockunion *su, struct peer_group *group, afi_t afi, safi_t safi, as_t *as) argument
1888 peer_group_unbind(struct bgp *bgp, struct peer *peer, struct peer_group *group, afi_t afi, safi_t safi) argument
2100 struct peer_group *group; local
2485 struct peer_group *group; local
2589 struct peer_group *group; local
2721 struct peer_group *group; local
2780 struct peer_group *group; local
2843 struct peer_group *group; local
2913 struct peer_group *group; local
2982 struct peer_group *group; local
3063 struct peer_group *group; local
3119 struct peer_group *group; local
3182 struct peer_group *group; local
3203 struct peer_group *group; local
3229 struct peer_group *group; local
3270 struct peer_group *group; local
3389 struct peer_group *group; local
3422 struct peer_group *group; local
3450 struct peer_group *group; local
3528 struct peer_group *group; local
3685 struct peer_group *group; local
3732 struct peer_group *group; local
3797 struct peer_group *group; local
3845 struct peer_group *group; local
3891 struct peer_group *group; local
3953 struct peer_group *group; local
4003 struct peer_group *group; local
4046 struct peer_group *group; local
4110 struct peer_group *group; local
4158 struct peer_group *group; local
4205 struct peer_group *group; local
4266 struct peer_group *group; local
4307 struct peer_group *group; local
4347 struct peer_group *group; local
4386 struct peer_group *group; local
4439 struct peer_group *group; local
4470 struct peer_group *group; local
4536 struct peer_group *group; local
5172 struct peer_group *group; local
5212 struct peer_group *group; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/quagga/bgpd/
H A Dbgpd.c657 /* Peer-group */
665 peer1 = listnode_head (peer->group->peer);
983 /* When this peer is a member of peer-group. */
984 if (peer->group)
986 if (peer->group->conf->as)
988 /* Return peer group's AS number. */
989 *as = peer->group->conf->as;
992 if (peer_sort (peer->group->conf) == BGP_PEER_IBGP)
1039 /* Activate the peer or peer group for specified AFI and SAFI. */
1090 struct peer_group *group; local
1357 peer_group_free(struct peer_group *group) argument
1365 struct peer_group *group; local
1379 struct peer_group *group; local
1410 peer_group2peer_config_copy(struct peer_group *group, struct peer *peer, afi_t afi, safi_t safi) argument
1668 struct peer_group *group; local
1693 peer_group_delete(struct peer_group *group) argument
1723 peer_group_remote_as_delete(struct peer_group *group) argument
1745 peer_group_bind(struct bgp *bgp, union sockunion *su, struct peer_group *group, afi_t afi, safi_t safi, as_t *as) argument
1888 peer_group_unbind(struct bgp *bgp, struct peer *peer, struct peer_group *group, afi_t afi, safi_t safi) argument
2100 struct peer_group *group; local
2485 struct peer_group *group; local
2589 struct peer_group *group; local
2721 struct peer_group *group; local
2780 struct peer_group *group; local
2843 struct peer_group *group; local
2913 struct peer_group *group; local
2982 struct peer_group *group; local
3063 struct peer_group *group; local
3119 struct peer_group *group; local
3182 struct peer_group *group; local
3203 struct peer_group *group; local
3229 struct peer_group *group; local
3270 struct peer_group *group; local
3389 struct peer_group *group; local
3422 struct peer_group *group; local
3450 struct peer_group *group; local
3528 struct peer_group *group; local
3685 struct peer_group *group; local
3732 struct peer_group *group; local
3797 struct peer_group *group; local
3845 struct peer_group *group; local
3891 struct peer_group *group; local
3953 struct peer_group *group; local
4003 struct peer_group *group; local
4046 struct peer_group *group; local
4110 struct peer_group *group; local
4158 struct peer_group *group; local
4205 struct peer_group *group; local
4266 struct peer_group *group; local
4307 struct peer_group *group; local
4347 struct peer_group *group; local
4386 struct peer_group *group; local
4439 struct peer_group *group; local
4470 struct peer_group *group; local
4536 struct peer_group *group; local
5172 struct peer_group *group; local
5212 struct peer_group *group; local
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/openssl-1.0.0q/apps/
H A Decparam.c121 EC_GROUP *group = NULL; local
413 group = EC_GROUP_new_by_curve_name(nid);
414 if (group == NULL)
420 EC_GROUP_set_asn1_flag(group, asn1_flag);
421 EC_GROUP_set_point_conversion_form(group, form);
425 group = d2i_ECPKParameters_bio(in, NULL);
429 group = PEM_read_bio_ECPKParameters(in,NULL,NULL,NULL);
437 if (group == NULL)
446 EC_GROUP_set_point_conversion_form(group, form);
449 EC_GROUP_set_asn1_flag(group, asn1_fla
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src/router/openssl/apps/
H A Decparam.c122 EC_GROUP *group = NULL; local
381 group = EC_GROUP_new_by_curve_name(nid);
382 if (group == NULL) {
386 EC_GROUP_set_asn1_flag(group, asn1_flag);
387 EC_GROUP_set_point_conversion_form(group, form);
389 group = d2i_ECPKParameters_bio(in, NULL);
391 group = PEM_read_bio_ECPKParameters(in, NULL, NULL, NULL);
397 if (group == NULL) {
404 EC_GROUP_set_point_conversion_form(group, form);
407 EC_GROUP_set_asn1_flag(group, asn1_fla
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/openssl/apps/
H A Decparam.c122 EC_GROUP *group = NULL; local
381 group = EC_GROUP_new_by_curve_name(nid);
382 if (group == NULL) {
386 EC_GROUP_set_asn1_flag(group, asn1_flag);
387 EC_GROUP_set_point_conversion_form(group, form);
389 group = d2i_ECPKParameters_bio(in, NULL);
391 group = PEM_read_bio_ECPKParameters(in, NULL, NULL, NULL);
397 if (group == NULL) {
404 EC_GROUP_set_point_conversion_form(group, form);
407 EC_GROUP_set_asn1_flag(group, asn1_fla
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt/router/openssl-1.0.0q/apps/
H A Decparam.c121 EC_GROUP *group = NULL; local
413 group = EC_GROUP_new_by_curve_name(nid);
414 if (group == NULL)
420 EC_GROUP_set_asn1_flag(group, asn1_flag);
421 EC_GROUP_set_point_conversion_form(group, form);
425 group = d2i_ECPKParameters_bio(in, NULL);
429 group = PEM_read_bio_ECPKParameters(in,NULL,NULL,NULL);
437 if (group == NULL)
446 EC_GROUP_set_point_conversion_form(group, form);
449 EC_GROUP_set_asn1_flag(group, asn1_fla
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/openssl/apps/
H A Decparam.c122 EC_GROUP *group = NULL; local
381 group = EC_GROUP_new_by_curve_name(nid);
382 if (group == NULL) {
386 EC_GROUP_set_asn1_flag(group, asn1_flag);
387 EC_GROUP_set_point_conversion_form(group, form);
389 group = d2i_ECPKParameters_bio(in, NULL);
391 group = PEM_read_bio_ECPKParameters(in, NULL, NULL, NULL);
397 if (group == NULL) {
404 EC_GROUP_set_point_conversion_form(group, form);
407 EC_GROUP_set_asn1_flag(group, asn1_fla
[all...]
/asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/openssl-1.0.0q/apps/
H A Decparam.c121 EC_GROUP *group = NULL; local
413 group = EC_GROUP_new_by_curve_name(nid);
414 if (group == NULL)
420 EC_GROUP_set_asn1_flag(group, asn1_flag);
421 EC_GROUP_set_point_conversion_form(group, form);
425 group = d2i_ECPKParameters_bio(in, NULL);
429 group = PEM_read_bio_ECPKParameters(in,NULL,NULL,NULL);
437 if (group == NULL)
446 EC_GROUP_set_point_conversion_form(group, form);
449 EC_GROUP_set_asn1_flag(group, asn1_fla
[all...]

Completed in 177 milliseconds

<<11121314151617181920>>