Searched refs:eckey (Results 1 - 25 of 66) sorted by relevance

123

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/ecdsa/
H A Decs_sign.c61 ECDSA_SIG *ECDSA_do_sign(const unsigned char *dgst, int dlen, EC_KEY *eckey) argument
63 return ECDSA_do_sign_ex(dgst, dlen, NULL, NULL, eckey);
67 const BIGNUM *kinv, const BIGNUM *rp, EC_KEY *eckey)
69 ECDSA_DATA *ecdsa = ecdsa_check(eckey);
72 return ecdsa->meth->ecdsa_do_sign(dgst, dlen, kinv, rp, eckey);
76 *sig, unsigned int *siglen, EC_KEY *eckey)
78 return ECDSA_sign_ex(type, dgst, dlen, sig, siglen, NULL, NULL, eckey);
83 EC_KEY *eckey)
86 s = ECDSA_do_sign_ex(dgst, dlen, kinv, r, eckey);
97 int ECDSA_sign_setup(EC_KEY *eckey, BN_CT argument
66 ECDSA_do_sign_ex(const unsigned char *dgst, int dlen, const BIGNUM *kinv, const BIGNUM *rp, EC_KEY *eckey) argument
75 ECDSA_sign(int type, const unsigned char *dgst, int dlen, unsigned char *sig, unsigned int *siglen, EC_KEY *eckey) argument
81 ECDSA_sign_ex(int type, const unsigned char *dgst, int dlen, unsigned char *sig, unsigned int *siglen, const BIGNUM *kinv, const BIGNUM *r, EC_KEY *eckey) argument
[all...]
H A Decs_vrf.c70 const ECDSA_SIG *sig, EC_KEY *eckey)
72 ECDSA_DATA *ecdsa = ecdsa_check(eckey);
75 return ecdsa->meth->ecdsa_do_verify(dgst, dgst_len, sig, eckey);
84 const unsigned char *sigbuf, int sig_len, EC_KEY *eckey)
92 ret=ECDSA_do_verify(dgst, dgst_len, s, eckey);
69 ECDSA_do_verify(const unsigned char *dgst, int dgst_len, const ECDSA_SIG *sig, EC_KEY *eckey) argument
83 ECDSA_verify(int type, const unsigned char *dgst, int dgst_len, const unsigned char *sigbuf, int sig_len, EC_KEY *eckey) argument
H A Decs_locl.h72 const BIGNUM *inv, const BIGNUM *rp, EC_KEY *eckey);
73 int (*ecdsa_sign_setup)(EC_KEY *eckey, BN_CTX *ctx, BIGNUM **kinv,
76 const ECDSA_SIG *sig, EC_KEY *eckey);
78 int (*init)(EC_KEY *eckey);
79 int (*finish)(EC_KEY *eckey);
98 * \param eckey pointer to a EC_KEY object
101 ECDSA_DATA *ecdsa_check(EC_KEY *eckey);
H A Decdsa.h120 * \param eckey pointer to the EC_KEY object containing a private EC key
123 ECDSA_SIG *ECDSA_do_sign(const unsigned char *dgst,int dgst_len,EC_KEY *eckey);
127 * private key (note: sig must point to ECDSA_size(eckey) bytes of memory).
133 * \param eckey pointer to the EC_KEY object containing a private EC key
137 const BIGNUM *kinv, const BIGNUM *rp, EC_KEY *eckey);
145 * \param eckey pointer to the EC_KEY object containing a public EC key
149 const ECDSA_SIG *sig, EC_KEY* eckey);
167 * \param eckey pointer to the EC_KEY object
171 int ECDSA_set_method(EC_KEY *eckey, const ECDSA_METHOD *meth);
175 * \param eckey pointe
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/ecdh/
H A Dech_key.c73 EC_KEY *eckey,
77 ECDH_DATA *ecdh = ecdh_check(eckey);
80 return ecdh->meth->compute_key(out, outlen, pub_key, eckey, KDF);
72 ECDH_compute_key(void *out, size_t outlen, const EC_POINT *pub_key, EC_KEY *eckey, void *(*KDF) (const void *in, size_t inlen, void *out, size_t *outlen)) argument
H A Dech_locl.h72 int (*init) (EC_KEY *eckey);
73 int (*finish) (EC_KEY *eckey);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/ecdsa/
H A Decs_sign.c62 ECDSA_SIG *ECDSA_do_sign(const unsigned char *dgst, int dlen, EC_KEY *eckey) argument
64 return ECDSA_do_sign_ex(dgst, dlen, NULL, NULL, eckey);
69 EC_KEY *eckey)
71 ECDSA_DATA *ecdsa = ecdsa_check(eckey);
74 return ecdsa->meth->ecdsa_do_sign(dgst, dlen, kinv, rp, eckey);
78 *sig, unsigned int *siglen, EC_KEY *eckey)
80 return ECDSA_sign_ex(type, dgst, dlen, sig, siglen, NULL, NULL, eckey);
85 const BIGNUM *r, EC_KEY *eckey)
89 s = ECDSA_do_sign_ex(dgst, dlen, kinv, r, eckey);
99 int ECDSA_sign_setup(EC_KEY *eckey, BN_CT argument
67 ECDSA_do_sign_ex(const unsigned char *dgst, int dlen, const BIGNUM *kinv, const BIGNUM *rp, EC_KEY *eckey) argument
77 ECDSA_sign(int type, const unsigned char *dgst, int dlen, unsigned char *sig, unsigned int *siglen, EC_KEY *eckey) argument
83 ECDSA_sign_ex(int type, const unsigned char *dgst, int dlen, unsigned char *sig, unsigned int *siglen, const BIGNUM *kinv, const BIGNUM *r, EC_KEY *eckey) argument
[all...]
H A Decs_locl.h72 EC_KEY *eckey);
73 int (*ecdsa_sign_setup) (EC_KEY *eckey, BN_CTX *ctx, BIGNUM **kinv,
76 const ECDSA_SIG *sig, EC_KEY *eckey);
78 int (*init) (EC_KEY *eckey);
79 int (*finish) (EC_KEY *eckey);
111 * \param eckey pointer to a EC_KEY object
114 ECDSA_DATA *ecdsa_check(EC_KEY *eckey);
H A Decs_vrf.c72 const ECDSA_SIG *sig, EC_KEY *eckey)
74 ECDSA_DATA *ecdsa = ecdsa_check(eckey);
77 return ecdsa->meth->ecdsa_do_verify(dgst, dgst_len, sig, eckey);
87 const unsigned char *sigbuf, int sig_len, EC_KEY *eckey)
104 ret = ECDSA_do_verify(dgst, dgst_len, s, eckey);
71 ECDSA_do_verify(const unsigned char *dgst, int dgst_len, const ECDSA_SIG *sig, EC_KEY *eckey) argument
86 ECDSA_verify(int type, const unsigned char *dgst, int dgst_len, const unsigned char *sigbuf, int sig_len, EC_KEY *eckey) argument
H A Decdsa.h114 * \param eckey EC_KEY object containing a private EC key
118 EC_KEY *eckey);
121 * private key (note: sig must point to ECDSA_size(eckey) bytes of memory).
127 * \param eckey EC_KEY object containing a private EC key
132 EC_KEY *eckey);
139 * \param eckey EC_KEY object containing a public EC key
144 const ECDSA_SIG *sig, EC_KEY *eckey);
159 * \param eckey EC_KEY object
163 int ECDSA_set_method(EC_KEY *eckey, const ECDSA_METHOD *meth);
166 * \param eckey EC_KE
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/ecdh/
H A Dech_key.c73 EC_KEY *eckey,
77 ECDH_DATA *ecdh = ecdh_check(eckey);
80 return ecdh->meth->compute_key(out, outlen, pub_key, eckey, KDF);
72 ECDH_compute_key(void *out, size_t outlen, const EC_POINT *pub_key, EC_KEY *eckey, void *(*KDF) (const void *in, size_t inlen, void *out, size_t *outlen)) argument
H A Dech_locl.h72 int (*init) (EC_KEY *eckey);
73 int (*finish) (EC_KEY *eckey);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/ecdsa/
H A Decs_sign.c62 ECDSA_SIG *ECDSA_do_sign(const unsigned char *dgst, int dlen, EC_KEY *eckey) argument
64 return ECDSA_do_sign_ex(dgst, dlen, NULL, NULL, eckey);
69 EC_KEY *eckey)
71 ECDSA_DATA *ecdsa = ecdsa_check(eckey);
74 return ecdsa->meth->ecdsa_do_sign(dgst, dlen, kinv, rp, eckey);
78 *sig, unsigned int *siglen, EC_KEY *eckey)
80 return ECDSA_sign_ex(type, dgst, dlen, sig, siglen, NULL, NULL, eckey);
85 const BIGNUM *r, EC_KEY *eckey)
89 s = ECDSA_do_sign_ex(dgst, dlen, kinv, r, eckey);
99 int ECDSA_sign_setup(EC_KEY *eckey, BN_CT argument
67 ECDSA_do_sign_ex(const unsigned char *dgst, int dlen, const BIGNUM *kinv, const BIGNUM *rp, EC_KEY *eckey) argument
77 ECDSA_sign(int type, const unsigned char *dgst, int dlen, unsigned char *sig, unsigned int *siglen, EC_KEY *eckey) argument
83 ECDSA_sign_ex(int type, const unsigned char *dgst, int dlen, unsigned char *sig, unsigned int *siglen, const BIGNUM *kinv, const BIGNUM *r, EC_KEY *eckey) argument
[all...]
H A Decs_locl.h72 EC_KEY *eckey);
73 int (*ecdsa_sign_setup) (EC_KEY *eckey, BN_CTX *ctx, BIGNUM **kinv,
76 const ECDSA_SIG *sig, EC_KEY *eckey);
78 int (*init) (EC_KEY *eckey);
79 int (*finish) (EC_KEY *eckey);
111 * \param eckey pointer to a EC_KEY object
114 ECDSA_DATA *ecdsa_check(EC_KEY *eckey);
H A Decs_vrf.c72 const ECDSA_SIG *sig, EC_KEY *eckey)
74 ECDSA_DATA *ecdsa = ecdsa_check(eckey);
77 return ecdsa->meth->ecdsa_do_verify(dgst, dgst_len, sig, eckey);
87 const unsigned char *sigbuf, int sig_len, EC_KEY *eckey)
104 ret = ECDSA_do_verify(dgst, dgst_len, s, eckey);
71 ECDSA_do_verify(const unsigned char *dgst, int dgst_len, const ECDSA_SIG *sig, EC_KEY *eckey) argument
86 ECDSA_verify(int type, const unsigned char *dgst, int dgst_len, const unsigned char *sigbuf, int sig_len, EC_KEY *eckey) argument
H A Decdsa.h114 * \param eckey EC_KEY object containing a private EC key
118 EC_KEY *eckey);
121 * private key (note: sig must point to ECDSA_size(eckey) bytes of memory).
127 * \param eckey EC_KEY object containing a private EC key
132 EC_KEY *eckey);
139 * \param eckey EC_KEY object containing a public EC key
144 const ECDSA_SIG *sig, EC_KEY *eckey);
159 * \param eckey EC_KEY object
163 int ECDSA_set_method(EC_KEY *eckey, const ECDSA_METHOD *meth);
166 * \param eckey EC_KE
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/ecdh/
H A Dech_key.c76 EC_KEY *eckey,
79 ECDH_DATA *ecdh = ecdh_check(eckey);
82 return ecdh->meth->compute_key(out, outlen, pub_key, eckey, KDF);
75 ECDH_compute_key(void *out, size_t outlen, const EC_POINT *pub_key, EC_KEY *eckey, void *(*KDF)(const void *in, size_t inlen, void *out, size_t *outlen)) argument
H A Dech_locl.h71 int (*init)(EC_KEY *eckey);
72 int (*finish)(EC_KEY *eckey);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/include/openssl/
H A Decdsa.h120 * \param eckey pointer to the EC_KEY object containing a private EC key
123 ECDSA_SIG *ECDSA_do_sign(const unsigned char *dgst,int dgst_len,EC_KEY *eckey);
127 * private key (note: sig must point to ECDSA_size(eckey) bytes of memory).
133 * \param eckey pointer to the EC_KEY object containing a private EC key
137 const BIGNUM *kinv, const BIGNUM *rp, EC_KEY *eckey);
145 * \param eckey pointer to the EC_KEY object containing a public EC key
149 const ECDSA_SIG *sig, EC_KEY* eckey);
167 * \param eckey pointer to the EC_KEY object
171 int ECDSA_set_method(EC_KEY *eckey, const ECDSA_METHOD *meth);
175 * \param eckey pointe
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/ec/
H A Dec_key.c230 int EC_KEY_generate_key(EC_KEY *eckey) argument
239 return FIPS_ec_key_generate_key(eckey);
242 if (!eckey || !eckey->group) {
252 if (eckey->priv_key == NULL) {
257 priv_key = eckey->priv_key;
259 if (!EC_GROUP_get_order(eckey->group, order, ctx))
267 if (eckey->pub_key == NULL) {
268 pub_key = EC_POINT_new(eckey->group);
272 pub_key = eckey
294 EC_KEY_check_key(const EC_KEY *eckey) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/ec/
H A Dec_key.c230 int EC_KEY_generate_key(EC_KEY *eckey) argument
239 return FIPS_ec_key_generate_key(eckey);
242 if (!eckey || !eckey->group) {
252 if (eckey->priv_key == NULL) {
257 priv_key = eckey->priv_key;
259 if (!EC_GROUP_get_order(eckey->group, order, ctx))
267 if (eckey->pub_key == NULL) {
268 pub_key = EC_POINT_new(eckey->group);
272 pub_key = eckey
294 EC_KEY_check_key(const EC_KEY *eckey) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/ec/
H A Dec_key.c233 int EC_KEY_generate_key(EC_KEY *eckey) argument
240 if (!eckey || !eckey->group)
249 if (eckey->priv_key == NULL)
256 priv_key = eckey->priv_key;
258 if (!EC_GROUP_get_order(eckey->group, order, ctx))
266 if (eckey->pub_key == NULL)
268 pub_key = EC_POINT_new(eckey->group);
273 pub_key = eckey->pub_key;
275 if (!EC_POINT_mul(eckey
295 EC_KEY_check_key(const EC_KEY *eckey) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/apps/
H A Dec.c90 EC_KEY *eckey = NULL; local
266 eckey = d2i_EC_PUBKEY_bio(in, NULL);
268 eckey = d2i_ECPrivateKey_bio(in, NULL);
271 eckey = PEM_read_bio_EC_PUBKEY(in, NULL, NULL, NULL);
273 eckey = PEM_read_bio_ECPrivateKey(in, NULL, NULL, passin);
278 if (eckey == NULL) {
299 group = EC_KEY_get0_group(eckey);
302 EC_KEY_set_conv_form(eckey, form);
305 EC_KEY_set_asn1_flag(eckey, asn1_flag);
308 if (!EC_KEY_print(out, eckey,
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/apps/
H A Dec.c90 EC_KEY *eckey = NULL; local
266 eckey = d2i_EC_PUBKEY_bio(in, NULL);
268 eckey = d2i_ECPrivateKey_bio(in, NULL);
271 eckey = PEM_read_bio_EC_PUBKEY(in, NULL, NULL, NULL);
273 eckey = PEM_read_bio_ECPrivateKey(in, NULL, NULL, passin);
278 if (eckey == NULL) {
299 group = EC_KEY_get0_group(eckey);
302 EC_KEY_set_conv_form(eckey, form);
305 EC_KEY_set_asn1_flag(eckey, asn1_flag);
308 if (!EC_KEY_print(out, eckey,
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/apps/
H A Dec.c92 EC_KEY *eckey = NULL; local
289 eckey = d2i_EC_PUBKEY_bio(in, NULL);
291 eckey = d2i_ECPrivateKey_bio(in, NULL);
296 eckey = PEM_read_bio_EC_PUBKEY(in, NULL, NULL,
299 eckey = PEM_read_bio_ECPrivateKey(in, NULL, NULL,
307 if (eckey == NULL)
333 group = EC_KEY_get0_group(eckey);
336 EC_KEY_set_conv_form(eckey, form);
339 EC_KEY_set_asn1_flag(eckey, asn1_flag);
342 if (!EC_KEY_print(out, eckey,
[all...]

Completed in 189 milliseconds

123