Home
last modified time | relevance | path

Searched refs:ECDH_compute_key (Results 1 – 12 of 12) sorted by relevance

/external/boringssl/src/crypto/ecdh/
Decdh.c77 int ECDH_compute_key(void *out, size_t outlen, const EC_POINT *pub_key, in ECDH_compute_key() function
98 OPENSSL_PUT_ERROR(ECDH, ECDH_compute_key, ECDH_R_NO_PRIVATE_VALUE); in ECDH_compute_key()
106 OPENSSL_PUT_ERROR(ECDH, ECDH_compute_key, ERR_R_MALLOC_FAILURE); in ECDH_compute_key()
111 OPENSSL_PUT_ERROR(ECDH, ECDH_compute_key, ECDH_R_POINT_ARITHMETIC_FAILURE); in ECDH_compute_key()
116 OPENSSL_PUT_ERROR(ECDH, ECDH_compute_key, ECDH_R_POINT_ARITHMETIC_FAILURE); in ECDH_compute_key()
123 OPENSSL_PUT_ERROR(ECDH, ECDH_compute_key, ERR_R_MALLOC_FAILURE); in ECDH_compute_key()
128 OPENSSL_PUT_ERROR(ECDH, ECDH_compute_key, ERR_R_INTERNAL_ERROR); in ECDH_compute_key()
134 OPENSSL_PUT_ERROR(ECDH, ECDH_compute_key, ECDH_R_KDF_FAILED); in ECDH_compute_key()
/external/boringssl/src/crypto/err/
Decdh.errordata1 ECDH,function,100,ECDH_compute_key
/external/boringssl/src/include/openssl/
Decdh.h88 OPENSSL_EXPORT int ECDH_compute_key(void *out, size_t outlen,
/external/conscrypt/src/main/java/org/conscrypt/
DOpenSSLECDHKeyAgreement.java66 int actualResultLength = NativeCrypto.ECDH_compute_key( in engineDoPhase()
DNativeCrypto.java224 public static native int ECDH_compute_key(byte[] out, int outOffset, in ECDH_compute_key() method in NativeCrypto
/external/openssh/
Dkexecdhs.c131 if (ECDH_compute_key(kbuf, klen, client_public, in input_kex_ecdh_init()
Dkexecdhc.c165 if (ECDH_compute_key(kbuf, klen, server_public, in input_kex_ecdh_reply()
/external/boringssl/src/crypto/evp/
Dp_ec.c194 ret = ECDH_compute_key(key, outlen, pubkey, eckey, 0); in pkey_ec_derive()
/external/conscrypt/src/test/java/org/conscrypt/
DNativeCryptoTest.java2770 NativeCrypto.ECDH_compute_key(out, outOffset, pkey1Ref, pkey2Ref); in test_ECDH_compute_key_null_key_Failure()
2774 NativeCrypto.ECDH_compute_key(out, outOffset, null, pkey2Ref); in test_ECDH_compute_key_null_key_Failure()
2781 NativeCrypto.ECDH_compute_key(out, outOffset, pkey1Ref, null); in test_ECDH_compute_key_null_key_Failure()
/external/boringssl/src/ssl/
Ds3_srvr.c1923 ecdh_len = ECDH_compute_key(premaster_secret, ecdh_len, clnt_ecpoint, in ssl3_get_client_key_exchange()
Ds3_clnt.c1867 ecdh_len = ECDH_compute_key(pms, pms_len, srvr_ecpoint, clnt_ecdh, NULL); in ssl3_send_client_key_exchange()
/external/conscrypt/src/main/native/
Dorg_conscrypt_NativeCrypto.cpp4266 int outputLength = ECDH_compute_key(
10710 NATIVE_METHOD(NativeCrypto, ECDH_compute_key, "([BI" REF_EVP_PKEY REF_EVP_PKEY ")I"),