Searched refs:ECDH_compute_key (Results 1 – 12 of 12) sorted by relevance
/external/boringssl/src/crypto/ecdh/ |
D | ecdh.c | 77 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/ |
D | ecdh.errordata | 1 ECDH,function,100,ECDH_compute_key
|
/external/boringssl/src/include/openssl/ |
D | ecdh.h | 88 OPENSSL_EXPORT int ECDH_compute_key(void *out, size_t outlen,
|
/external/conscrypt/src/main/java/org/conscrypt/ |
D | OpenSSLECDHKeyAgreement.java | 66 int actualResultLength = NativeCrypto.ECDH_compute_key( in engineDoPhase()
|
D | NativeCrypto.java | 224 public static native int ECDH_compute_key(byte[] out, int outOffset, in ECDH_compute_key() method in NativeCrypto
|
/external/openssh/ |
D | kexecdhs.c | 131 if (ECDH_compute_key(kbuf, klen, client_public, in input_kex_ecdh_init()
|
D | kexecdhc.c | 165 if (ECDH_compute_key(kbuf, klen, server_public, in input_kex_ecdh_reply()
|
/external/boringssl/src/crypto/evp/ |
D | p_ec.c | 194 ret = ECDH_compute_key(key, outlen, pubkey, eckey, 0); in pkey_ec_derive()
|
/external/conscrypt/src/test/java/org/conscrypt/ |
D | NativeCryptoTest.java | 2770 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/ |
D | s3_srvr.c | 1923 ecdh_len = ECDH_compute_key(premaster_secret, ecdh_len, clnt_ecpoint, in ssl3_get_client_key_exchange()
|
D | s3_clnt.c | 1867 ecdh_len = ECDH_compute_key(pms, pms_len, srvr_ecpoint, clnt_ecdh, NULL); in ssl3_send_client_key_exchange()
|
/external/conscrypt/src/main/native/ |
D | org_conscrypt_NativeCrypto.cpp | 4266 int outputLength = ECDH_compute_key( 10710 NATIVE_METHOD(NativeCrypto, ECDH_compute_key, "([BI" REF_EVP_PKEY REF_EVP_PKEY ")I"),
|