Searched refs:DH_compute_key (Results 1 – 11 of 11) sorted by relevance
/external/boringssl/src/crypto/dh/ |
D | dh_test.cc | 170 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()
|
D | dh.c | 158 int DH_compute_key(unsigned char *out, const BIGNUM *peers_key, DH *dh) { in DH_compute_key() function
|
/external/boringssl/src/include/openssl/ |
D | dh.h | 131 OPENSSL_EXPORT int DH_compute_key(uint8_t *out, const BIGNUM *peers_key,
|
/external/openssh/ |
D | kexdhc.c | 155 if ((kout = DH_compute_key(kbuf, dh_server_pub, kex->dh)) < 0 || in input_kex_dh()
|
D | kexdhs.c | 147 if ((kout = DH_compute_key(kbuf, dh_client_pub, kex->dh)) < 0 || in input_kex_dh_init()
|
D | kexgexs.c | 206 if ((kout = DH_compute_key(kbuf, dh_client_pub, kex->dh)) < 0 || in input_kex_dh_gex_init()
|
D | kexgexc.c | 217 if ((kout = DH_compute_key(kbuf, dh_server_pub, kex->dh)) < 0 || in input_kex_dh_gex_reply()
|
/external/wpa_supplicant_8/src/crypto/ |
D | crypto_openssl.c | 635 keylen = DH_compute_key(wpabuf_mhead(res), pub_key, dh); in dh5_derive_shared()
|
/external/boringssl/src/ssl/ |
D | s3_clnt.c | 1792 dh_len = DH_compute_key(pms, dh_srvr->pub_key, dh_clnt); in ssl3_send_client_key_exchange()
|
D | s3_srvr.c | 1836 dh_len = DH_compute_key(premaster_secret, pub, dh_srvr); in ssl3_get_client_key_exchange()
|
/external/ipsec-tools/src/racoon/ |
D | crypto_openssl.c | 2548 if ((l = DH_compute_key(v, dh_pub, dh)) == -1)
|