Searched refs:meth (Results 1 - 25 of 274) sorted by relevance

1234567891011

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/rand/
H A Drand_lib.c73 int RAND_set_rand_method(const RAND_METHOD *meth) argument
82 default_RAND_meth = meth;
134 const RAND_METHOD *meth = RAND_get_rand_method(); local
135 if (meth && meth->cleanup)
136 meth->cleanup();
142 const RAND_METHOD *meth = RAND_get_rand_method(); local
143 if (meth && meth->seed)
144 meth
149 const RAND_METHOD *meth = RAND_get_rand_method(); local
156 const RAND_METHOD *meth = RAND_get_rand_method(); local
164 const RAND_METHOD *meth = RAND_get_rand_method(); local
172 const RAND_METHOD *meth = RAND_get_rand_method(); local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/comp/
H A Dcomp_lib.c7 COMP_CTX *COMP_CTX_new(COMP_METHOD *meth) argument
17 ret->meth=meth;
18 if ((ret->meth->init != NULL) && !ret->meth->init(ret))
31 if (ctx->meth->finish != NULL)
32 ctx->meth->finish(ctx);
41 if (ctx->meth->compress == NULL)
46 ret=ctx->meth->compress(ctx,out,olen,in,ilen);
60 if (ctx->meth
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/comp/
H A Dcomp_lib.c7 COMP_CTX *COMP_CTX_new(COMP_METHOD *meth) argument
16 ret->meth = meth;
17 if ((ret->meth->init != NULL) && !ret->meth->init(ret)) {
29 if (ctx->meth->finish != NULL)
30 ctx->meth->finish(ctx);
39 if (ctx->meth->compress == NULL) {
43 ret = ctx->meth->compress(ctx, out, olen, in, ilen);
56 if (ctx->meth
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/comp/
H A Dcomp_lib.c7 COMP_CTX *COMP_CTX_new(COMP_METHOD *meth) argument
16 ret->meth = meth;
17 if ((ret->meth->init != NULL) && !ret->meth->init(ret)) {
29 if (ctx->meth->finish != NULL)
30 ctx->meth->finish(ctx);
39 if (ctx->meth->compress == NULL) {
43 ret = ctx->meth->compress(ctx, out, olen, in, ilen);
56 if (ctx->meth
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/ec/
H A Dec_oct.c75 if (group->meth->point_set_compressed_coordinates == 0
76 && !(group->meth->flags & EC_FLAGS_DEFAULT_OCT)) {
81 if (group->meth != point->meth) {
86 if (group->meth->flags & EC_FLAGS_DEFAULT_OCT) {
87 if (group->meth->field_type == NID_X9_62_prime_field)
102 return group->meth->point_set_compressed_coordinates(group, point, x,
111 if (group->meth->point_set_compressed_coordinates == 0
112 && !(group->meth->flags & EC_FLAGS_DEFAULT_OCT)) {
117 if (group->meth !
[all...]
H A Dec_cvt.c82 const EC_METHOD *meth; local
111 meth = EC_GFp_mont_method();
113 meth = EC_GFp_nist_method();
116 ret = EC_GROUP_new(meth);
141 meth = EC_GFp_mont_method();
143 ret = EC_GROUP_new(meth);
160 const EC_METHOD *meth; local
167 meth = EC_GF2m_simple_method();
169 ret = EC_GROUP_new(meth);
H A Dec_lib.c75 EC_GROUP *EC_GROUP_new(const EC_METHOD *meth) argument
79 if (meth == NULL) {
83 if (meth->group_init == 0) {
94 ret->meth = meth;
110 if (!meth->group_init(ret)) {
123 if (group->meth->group_finish != 0)
124 group->meth->group_finish(group);
147 if (group->meth->group_clear_finish != 0)
148 group->meth
288 EC_METHOD_get_field_type(const EC_METHOD *meth) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/ec/
H A Dec_oct.c75 if (group->meth->point_set_compressed_coordinates == 0
76 && !(group->meth->flags & EC_FLAGS_DEFAULT_OCT)) {
81 if (group->meth != point->meth) {
86 if (group->meth->flags & EC_FLAGS_DEFAULT_OCT) {
87 if (group->meth->field_type == NID_X9_62_prime_field)
102 return group->meth->point_set_compressed_coordinates(group, point, x,
111 if (group->meth->point_set_compressed_coordinates == 0
112 && !(group->meth->flags & EC_FLAGS_DEFAULT_OCT)) {
117 if (group->meth !
[all...]
H A Dec_cvt.c82 const EC_METHOD *meth; local
111 meth = EC_GFp_mont_method();
113 meth = EC_GFp_nist_method();
116 ret = EC_GROUP_new(meth);
141 meth = EC_GFp_mont_method();
143 ret = EC_GROUP_new(meth);
160 const EC_METHOD *meth; local
167 meth = EC_GF2m_simple_method();
169 ret = EC_GROUP_new(meth);
H A Dec_lib.c75 EC_GROUP *EC_GROUP_new(const EC_METHOD *meth) argument
79 if (meth == NULL) {
83 if (meth->group_init == 0) {
94 ret->meth = meth;
110 if (!meth->group_init(ret)) {
123 if (group->meth->group_finish != 0)
124 group->meth->group_finish(group);
147 if (group->meth->group_clear_finish != 0)
148 group->meth
288 EC_METHOD_get_field_type(const EC_METHOD *meth) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/rand/
H A Drand_lib.c80 int RAND_set_rand_method(const RAND_METHOD *meth) argument
88 default_RAND_meth = meth;
135 const RAND_METHOD *meth = RAND_get_rand_method(); local
136 if (meth && meth->cleanup)
137 meth->cleanup();
143 const RAND_METHOD *meth = RAND_get_rand_method(); local
144 if (meth && meth->seed)
145 meth
150 const RAND_METHOD *meth = RAND_get_rand_method(); local
157 const RAND_METHOD *meth = RAND_get_rand_method(); local
165 const RAND_METHOD *meth = RAND_get_rand_method(); local
173 const RAND_METHOD *meth = RAND_get_rand_method(); local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/rand/
H A Drand_lib.c80 int RAND_set_rand_method(const RAND_METHOD *meth) argument
88 default_RAND_meth = meth;
135 const RAND_METHOD *meth = RAND_get_rand_method(); local
136 if (meth && meth->cleanup)
137 meth->cleanup();
143 const RAND_METHOD *meth = RAND_get_rand_method(); local
144 if (meth && meth->seed)
145 meth
150 const RAND_METHOD *meth = RAND_get_rand_method(); local
157 const RAND_METHOD *meth = RAND_get_rand_method(); local
165 const RAND_METHOD *meth = RAND_get_rand_method(); local
173 const RAND_METHOD *meth = RAND_get_rand_method(); local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/ssl/
H A Dt1_ext.c67 custom_ext_method *meth = exts->meths; local
68 for (i = 0; i < exts->meths_count; i++, meth++) {
69 if (ext_type == meth->ext_type)
70 return meth;
81 custom_ext_method *meth = exts->meths; local
82 for (i = 0; i < exts->meths_count; i++, meth++)
83 meth->ext_flags = 0;
92 custom_ext_method *meth; local
93 meth = custom_ext_find(exts, ext_type);
95 if (!meth)
129 custom_ext_method *meth; local
210 custom_ext_method *meth; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/ssl/
H A Dt1_ext.c67 custom_ext_method *meth = exts->meths; local
68 for (i = 0; i < exts->meths_count; i++, meth++) {
69 if (ext_type == meth->ext_type)
70 return meth;
81 custom_ext_method *meth = exts->meths; local
82 for (i = 0; i < exts->meths_count; i++, meth++)
83 meth->ext_flags = 0;
92 custom_ext_method *meth; local
93 meth = custom_ext_find(exts, ext_type);
95 if (!meth)
129 custom_ext_method *meth; local
210 custom_ext_method *meth; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/ec/
H A Dec_lib.c76 EC_GROUP *EC_GROUP_new(const EC_METHOD *meth) argument
80 if (meth == NULL)
85 if (meth->group_init == 0)
98 ret->meth = meth;
113 if (!meth->group_init(ret))
127 if (group->meth->group_finish != 0)
128 group->meth->group_finish(group);
148 if (group->meth->group_clear_finish != 0)
149 group->meth
278 EC_METHOD_get_field_type(const EC_METHOD *meth) argument
[all...]
H A Dec_cvt.c78 const EC_METHOD *meth; local
81 meth = EC_GFp_nist_method();
83 ret = EC_GROUP_new(meth);
109 meth = EC_GFp_mont_method();
111 ret = EC_GROUP_new(meth);
128 const EC_METHOD *meth; local
131 meth = EC_GF2m_simple_method();
133 ret = EC_GROUP_new(meth);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/dso/
H A Ddso_lib.c72 void DSO_set_default_method(DSO_METHOD *meth) argument
74 default_DSO_meth = meth;
84 return (dso->meth);
87 DSO_METHOD *DSO_set_method(DSO *dso, DSO_METHOD *meth) argument
90 mtmp = dso->meth;
91 dso->meth = meth;
95 DSO *DSO_new_method(DSO_METHOD *meth) argument
119 if (meth == NULL)
120 ret->meth
190 DSO_load(DSO *dso, const char *filename, DSO_METHOD *meth, int flags) argument
428 DSO_METHOD *meth = default_DSO_meth; local
440 DSO_METHOD *meth = default_DSO_meth; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/dso/
H A Ddso_lib.c72 void DSO_set_default_method(DSO_METHOD *meth) argument
74 default_DSO_meth = meth;
84 return (dso->meth);
87 DSO_METHOD *DSO_set_method(DSO *dso, DSO_METHOD *meth) argument
90 mtmp = dso->meth;
91 dso->meth = meth;
95 DSO *DSO_new_method(DSO_METHOD *meth) argument
119 if (meth == NULL)
120 ret->meth
190 DSO_load(DSO *dso, const char *filename, DSO_METHOD *meth, int flags) argument
428 DSO_METHOD *meth = default_DSO_meth; local
440 DSO_METHOD *meth = default_DSO_meth; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/dsa/
H A Ddsa_vrf.c68 if (FIPS_mode() && !(dsa->meth->flags & DSA_FLAG_FIPS_METHOD)
74 return dsa->meth->dsa_do_verify(dgst, dgst_len, sig, dsa);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/dsa/
H A Ddsa_vrf.c68 if (FIPS_mode() && !(dsa->meth->flags & DSA_FLAG_FIPS_METHOD)
74 return dsa->meth->dsa_do_verify(dgst, dgst_len, sig, dsa);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/asn1/
H A Da_hdr.c69 M_ASN1_I2D_len(a->data, a->meth->i2d);
74 M_ASN1_I2D_put(a->data, a->meth->i2d);
87 if (ret->meth != NULL)
89 M_ASN1_D2I_get_x(void,ret->data,ret->meth->d2i);
106 ret->meth=NULL;
116 if (a->meth != NULL)
117 a->meth->destroy(a->data);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/dso/
H A Ddso_lib.c71 void DSO_set_default_method(DSO_METHOD *meth) argument
73 default_DSO_meth = meth;
83 return(dso->meth);
86 DSO_METHOD *DSO_set_method(DSO *dso, DSO_METHOD *meth) argument
89 mtmp = dso->meth;
90 dso->meth = meth;
94 DSO *DSO_new_method(DSO_METHOD *meth) argument
118 if(meth == NULL)
119 ret->meth
194 DSO_load(DSO *dso, const char *filename, DSO_METHOD *meth, int flags) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/x509v3/
H A Dv3_int.c80 static void *s2i_asn1_int(X509V3_EXT_METHOD *meth, X509V3_CTX *ctx, argument
83 return s2i_ASN1_INTEGER(meth, value);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/x509v3/
H A Dv3_int.c77 static void * s2i_asn1_int(X509V3_EXT_METHOD *meth, X509V3_CTX *ctx, char *value) argument
79 return s2i_ASN1_INTEGER(meth, value);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/x509v3/
H A Dv3_int.c80 static void *s2i_asn1_int(X509V3_EXT_METHOD *meth, X509V3_CTX *ctx, argument
83 return s2i_ASN1_INTEGER(meth, value);

Completed in 288 milliseconds

1234567891011