Home
last modified time | relevance | path

Searched refs:DH_compute_key (Results 1 – 11 of 11) sorted by relevance

/external/boringssl/src/crypto/dh/
Ddh_test.cc170 int ret = DH_compute_key(bssl::vector_data(&key1), b->pub_key, a.get()); in RunBasicTests()
183 ret = DH_compute_key(bssl::vector_data(&key2), a->pub_key, b.get()); in RunBasicTests()
461 int ret1 = DH_compute_key(bssl::vector_data(&Z1), dhB->pub_key, dhA.get()); in RunRFC5114Tests()
462 int ret2 = DH_compute_key(bssl::vector_data(&Z2), dhA->pub_key, dhB.get()); in RunRFC5114Tests()
Ddh.c158 int DH_compute_key(unsigned char *out, const BIGNUM *peers_key, DH *dh) { in DH_compute_key() function
/external/boringssl/src/include/openssl/
Ddh.h131 OPENSSL_EXPORT int DH_compute_key(uint8_t *out, const BIGNUM *peers_key,
/external/openssh/
Dkexdhc.c155 if ((kout = DH_compute_key(kbuf, dh_server_pub, kex->dh)) < 0 || in input_kex_dh()
Dkexdhs.c147 if ((kout = DH_compute_key(kbuf, dh_client_pub, kex->dh)) < 0 || in input_kex_dh_init()
Dkexgexs.c206 if ((kout = DH_compute_key(kbuf, dh_client_pub, kex->dh)) < 0 || in input_kex_dh_gex_init()
Dkexgexc.c217 if ((kout = DH_compute_key(kbuf, dh_server_pub, kex->dh)) < 0 || in input_kex_dh_gex_reply()
/external/wpa_supplicant_8/src/crypto/
Dcrypto_openssl.c635 keylen = DH_compute_key(wpabuf_mhead(res), pub_key, dh); in dh5_derive_shared()
/external/boringssl/src/ssl/
Ds3_clnt.c1792 dh_len = DH_compute_key(pms, dh_srvr->pub_key, dh_clnt); in ssl3_send_client_key_exchange()
Ds3_srvr.c1836 dh_len = DH_compute_key(premaster_secret, pub, dh_srvr); in ssl3_get_client_key_exchange()
/external/ipsec-tools/src/racoon/
Dcrypto_openssl.c2548 if ((l = DH_compute_key(v, dh_pub, dh)) == -1)