/external/boringssl/src/crypto/ecdh_extra/ |
D | ecdh_test.cc | 107 int ret = ECDH_compute_key(actual_z.data(), actual_z.size(), in TEST() 114 ret = ECDH_compute_key(actual_z.data(), actual_z.size(), peer_pub_key.get(), in TEST() 171 ECDH_compute_key(actual.data(), actual.size(), in RunWycheproofTest() 290 ECDH_compute_key(out, sizeof(out), peer, key.get(), nullptr)); in TEST()
|
D | ecdh_extra.c | 80 int ECDH_compute_key(void *out, size_t out_len, const EC_POINT *pub_key, in ECDH_compute_key() function
|
/external/boringssl/src/include/openssl/ |
D | ecdh.h | 88 OPENSSL_EXPORT int ECDH_compute_key(
|
/external/conscrypt/common/src/main/java/org/conscrypt/ |
D | OpenSSLECDHKeyAgreement.java | 69 int actualResultLength = NativeCrypto.ECDH_compute_key( in engineDoPhase()
|
D | NativeCrypto.java | 196 static native int ECDH_compute_key(byte[] out, int outOffset, NativeRef.EVP_PKEY publicKeyRef, in ECDH_compute_key() method in NativeCrypto
|
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/ |
D | OpenSSLECDHKeyAgreement.java | 73 int actualResultLength = NativeCrypto.ECDH_compute_key( in engineDoPhase()
|
D | NativeCrypto.java | 204 static native int ECDH_compute_key(byte[] out, int outOffset, NativeRef.EVP_PKEY publicKeyRef, 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 | 171 ret = ECDH_compute_key(key, outlen, pubkey, eckey, 0); in pkey_ec_derive()
|
/external/conscrypt/openjdk/src/test/java/org/conscrypt/ |
D | NativeCryptoTest.java | 2909 NativeCrypto.ECDH_compute_key(out, outOffset, pkey1Ref, pkey2Ref); in test_ECDH_compute_key_null_key_Failure() 2913 NativeCrypto.ECDH_compute_key(out, outOffset, null, pkey2Ref); in test_ECDH_compute_key_null_key_Failure() 2921 NativeCrypto.ECDH_compute_key(out, outOffset, pkey1Ref, null); in test_ECDH_compute_key_null_key_Failure()
|
/external/conscrypt/repackaged/openjdk/src/test/java/com/android/org/conscrypt/ |
D | NativeCryptoTest.java | 2917 NativeCrypto.ECDH_compute_key(out, outOffset, pkey1Ref, pkey2Ref); in test_ECDH_compute_key_null_key_Failure() 2921 NativeCrypto.ECDH_compute_key(out, outOffset, null, pkey2Ref); in test_ECDH_compute_key_null_key_Failure() 2929 NativeCrypto.ECDH_compute_key(out, outOffset, pkey1Ref, null); in test_ECDH_compute_key_null_key_Failure()
|
/external/grpc-grpc/src/objective-c/ |
D | grpc_shadow_boringssl_symbol_list | 1890 ECDH_compute_key
|
D | BoringSSL-GRPC.podspec | 3442 '#define ECDH_compute_key GRPC_SHADOW_ECDH_compute_key',
|
/external/grpc-grpc/src/core/tsi/ |
D | grpc_shadow_boringssl.h | 1918 #define ECDH_compute_key GRPC_SHADOW_ECDH_compute_key macro
|
/external/conscrypt/common/src/jni/main/cpp/conscrypt/ |
D | native_crypto.cc | 2312 int outputLength = ECDH_compute_key(&out[stdOutOffset], out.size() - stdOutOffset, pubkeyPoint, in NativeCrypto_ECDH_compute_key() 9968 CONSCRYPT_NATIVE_METHOD(ECDH_compute_key, "([BI" REF_EVP_PKEY REF_EVP_PKEY ")I"),
|