Searched refs:ecdh (Results 1 - 25 of 62) sorted by relevance

123

/external/chromium_org/third_party/openssl/openssl/crypto/ecdh/
H A Dech_key.c1 /* crypto/ecdh/ecdh_key.c */
76 ECDH_DATA *ecdh = ecdh_check(eckey); local
77 if (ecdh == NULL)
79 return ecdh->meth->compute_key(out, outlen, pub_key, eckey, KDF);
H A Dech_lib.c1 /* crypto/ecdh/ech_lib.c */
111 ECDH_DATA *ecdh; local
113 ecdh = ecdh_check(eckey);
115 if (ecdh == NULL)
119 mtmp = ecdh->meth;
124 if (ecdh->engine)
126 ENGINE_finish(ecdh->engine);
127 ecdh->engine = NULL;
130 ecdh->meth = meth;
259 ECDH_DATA *ecdh; local
268 ECDH_DATA *ecdh; local
[all...]
H A Dech_locl.h1 /* crypto/ecdh/ech_locl.h */
59 #include <openssl/ecdh.h>
68 int (*compute_key)(void *key, size_t outlen, const EC_POINT *pub_key, EC_KEY *ecdh,
H A Dech_err.c1 /* crypto/ecdh/ech_err.c */
63 #include <openssl/ecdh.h>
H A Dech_ossl.c1 /* crypto/ecdh/ech_ossl.c */
83 EC_KEY *ecdh,
109 EC_KEY *ecdh,
132 priv_key = EC_KEY_get0_private_key(ecdh);
139 group = EC_KEY_get0_group(ecdh);
108 ecdh_compute_key(void *out, size_t outlen, const EC_POINT *pub_key, EC_KEY *ecdh, void *(*KDF)(const void *in, size_t inlen, void *out, size_t *outlen)) argument
H A Decdh.h1 /* crypto/ecdh/ecdh.h */
94 int ECDH_compute_key(void *out, size_t outlen, const EC_POINT *pub_key, EC_KEY *ecdh,
/external/openssl/crypto/ecdh/
H A Dech_key.c1 /* crypto/ecdh/ecdh_key.c */
76 ECDH_DATA *ecdh = ecdh_check(eckey); local
77 if (ecdh == NULL)
79 return ecdh->meth->compute_key(out, outlen, pub_key, eckey, KDF);
H A Dech_lib.c1 /* crypto/ecdh/ech_lib.c */
111 ECDH_DATA *ecdh; local
113 ecdh = ecdh_check(eckey);
115 if (ecdh == NULL)
119 mtmp = ecdh->meth;
124 if (ecdh->engine)
126 ENGINE_finish(ecdh->engine);
127 ecdh->engine = NULL;
130 ecdh->meth = meth;
259 ECDH_DATA *ecdh; local
268 ECDH_DATA *ecdh; local
[all...]
H A Dech_locl.h1 /* crypto/ecdh/ech_locl.h */
59 #include <openssl/ecdh.h>
68 int (*compute_key)(void *key, size_t outlen, const EC_POINT *pub_key, EC_KEY *ecdh,
H A Dech_err.c1 /* crypto/ecdh/ech_err.c */
63 #include <openssl/ecdh.h>
H A Dech_ossl.c1 /* crypto/ecdh/ech_ossl.c */
83 EC_KEY *ecdh,
109 EC_KEY *ecdh,
132 priv_key = EC_KEY_get0_private_key(ecdh);
139 group = EC_KEY_get0_group(ecdh);
108 ecdh_compute_key(void *out, size_t outlen, const EC_POINT *pub_key, EC_KEY *ecdh, void *(*KDF)(const void *in, size_t inlen, void *out, size_t *outlen)) argument
H A Decdh.h1 /* crypto/ecdh/ecdh.h */
94 int ECDH_compute_key(void *out, size_t outlen, const EC_POINT *pub_key, EC_KEY *ecdh,
/external/chromium_org/third_party/openssl/openssl/include/openssl/
H A Decdh.h1 /* crypto/ecdh/ecdh.h */
94 int ECDH_compute_key(void *out, size_t outlen, const EC_POINT *pub_key, EC_KEY *ecdh,
/external/openssl/include/openssl/
H A Decdh.h1 /* crypto/ecdh/ecdh.h */
94 int ECDH_compute_key(void *out, size_t outlen, const EC_POINT *pub_key, EC_KEY *ecdh,
/external/chromium_org/third_party/openssl/openssl/crypto/err/
H A Derr_all.c83 #include <openssl/ecdh.h>
/external/openssh/
H A Dkexecdh.c39 #include <openssl/ecdh.h>
H A Dkexecdhc.c47 #include <openssl/ecdh.h>
H A Dkexecdhs.c49 #include <openssl/ecdh.h>
/external/openssl/crypto/err/
H A Derr_all.c83 #include <openssl/ecdh.h>
/external/chromium_org/third_party/openssl/openssl/ssl/
H A Dd1_srvr.c1035 EC_KEY *ecdh=NULL, *ecdhp; local
1168 if (s->s3->tmp.ecdh != NULL)
1170 EC_KEY_free(s->s3->tmp.ecdh);
1181 if ((ecdh = EC_KEY_dup(ecdhp)) == NULL)
1187 s->s3->tmp.ecdh=ecdh;
1188 if ((EC_KEY_get0_public_key(ecdh) == NULL) ||
1189 (EC_KEY_get0_private_key(ecdh) == NULL) ||
1192 if(!EC_KEY_generate_key(ecdh))
1199 if (((group = EC_KEY_get0_group(ecdh))
[all...]
H A Ds3_srvr.c916 if (s->s3->tmp.ecdh != NULL)
918 EC_KEY_free(s->s3->tmp.ecdh);
919 s->s3->tmp.ecdh = NULL;
1594 EC_KEY *ecdh=NULL, *ecdhp; local
1727 if (s->s3->tmp.ecdh != NULL)
1739 if ((ecdh = EC_KEY_dup(ecdhp)) == NULL)
1745 s->s3->tmp.ecdh=ecdh;
1746 if ((EC_KEY_get0_public_key(ecdh) == NULL) ||
1747 (EC_KEY_get0_private_key(ecdh)
[all...]
H A Ds3_lib.c3049 if (s->s3->tmp.ecdh != NULL)
3050 EC_KEY_free(s->s3->tmp.ecdh);
3099 if (s->s3->tmp.ecdh != NULL)
3101 EC_KEY_free(s->s3->tmp.ecdh);
3102 s->s3->tmp.ecdh = NULL;
3271 EC_KEY *ecdh = NULL; local
3283 ecdh = (EC_KEY *)parg;
3286 if (!EC_KEY_generate_key(ecdh))
3288 EC_KEY_free(ecdh);
3295 s->cert->ecdh_tmp = ecdh;
3601 EC_KEY *ecdh = NULL; local
[all...]
/external/openssl/ssl/
H A Dd1_srvr.c1035 EC_KEY *ecdh=NULL, *ecdhp; local
1168 if (s->s3->tmp.ecdh != NULL)
1170 EC_KEY_free(s->s3->tmp.ecdh);
1181 if ((ecdh = EC_KEY_dup(ecdhp)) == NULL)
1187 s->s3->tmp.ecdh=ecdh;
1188 if ((EC_KEY_get0_public_key(ecdh) == NULL) ||
1189 (EC_KEY_get0_private_key(ecdh) == NULL) ||
1192 if(!EC_KEY_generate_key(ecdh))
1199 if (((group = EC_KEY_get0_group(ecdh))
[all...]
H A Ds3_srvr.c916 if (s->s3->tmp.ecdh != NULL)
918 EC_KEY_free(s->s3->tmp.ecdh);
919 s->s3->tmp.ecdh = NULL;
1594 EC_KEY *ecdh=NULL, *ecdhp; local
1727 if (s->s3->tmp.ecdh != NULL)
1739 if ((ecdh = EC_KEY_dup(ecdhp)) == NULL)
1745 s->s3->tmp.ecdh=ecdh;
1746 if ((EC_KEY_get0_public_key(ecdh) == NULL) ||
1747 (EC_KEY_get0_private_key(ecdh)
[all...]
/external/chromium_org/net/quic/crypto/
H A Dp256_key_exchange_openssl.cc8 #include <openssl/ecdh.h>

Completed in 1652 milliseconds

123