Home
last modified time | relevance | path

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

/external/boringssl/src/crypto/ecdh_extra/
Decdh_test.cc107 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()
165 ECDH_compute_key(actual.data(), actual.size(), in RunWycheproofTest()
284 ECDH_compute_key(out, sizeof(out), peer, key.get(), nullptr)); in TEST()
Decdh_extra.c80 int ECDH_compute_key(void *out, size_t out_len, const EC_POINT *pub_key, in ECDH_compute_key() function
/external/rust/crates/quiche/deps/boringssl/src/crypto/ecdh_extra/
Decdh_test.cc107 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()
165 ECDH_compute_key(actual.data(), actual.size(), in RunWycheproofTest()
284 ECDH_compute_key(out, sizeof(out), peer, key.get(), nullptr)); in TEST()
Decdh_extra.c80 int ECDH_compute_key(void *out, size_t out_len, const EC_POINT *pub_key, in ECDH_compute_key() function
/external/rust/crates/quiche/deps/boringssl/src/include/openssl/
Decdh.h88 OPENSSL_EXPORT int ECDH_compute_key(
/external/boringssl/src/include/openssl/
Decdh.h88 OPENSSL_EXPORT int ECDH_compute_key(
/external/conscrypt/common/src/main/java/org/conscrypt/
DOpenSSLECDHKeyAgreement.java43 return NativeCrypto.ECDH_compute_key( in computeKey()
DNativeCrypto.java197 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/
DOpenSSLECDHKeyAgreement.java45 return NativeCrypto.ECDH_compute_key( in computeKey()
DNativeCrypto.java204 static native int ECDH_compute_key(byte[] out, int outOffset, NativeRef.EVP_PKEY publicKeyRef, in ECDH_compute_key() method in NativeCrypto
/external/rust/crates/quiche/deps/boringssl/src/crypto/evp/
Dp_ec.c170 ret = ECDH_compute_key(key, outlen, pubkey, eckey, 0); in pkey_ec_derive()
/external/openssh/
Dkexecdh.c179 if (ECDH_compute_key(kbuf, klen, dh_pub, key, NULL) != (int)klen || in kex_ecdh_dec_key_group()
/external/boringssl/src/crypto/evp/
Dp_ec.c170 ret = ECDH_compute_key(key, outlen, pubkey, eckey, 0); in pkey_ec_derive()
/external/python/cryptography/src/cryptography/hazmat/backends/openssl/
Dec.py175 r = self._backend._lib.ECDH_compute_key(
/external/libwebsockets/lib/tls/openssl/
Dlws-genec.c654 *ss_len = ECDH_compute_key(ss, len, in lws_genecdh_compute_shared_secret()
/external/conscrypt/openjdk/src/test/java/org/conscrypt/
DNativeCryptoTest.java2947 NativeCrypto.ECDH_compute_key(out, outOffset, pkey1Ref, pkey2Ref); in test_ECDH_compute_key_null_key_Failure()
2951 NativeCrypto.ECDH_compute_key(out, outOffset, null, pkey2Ref); in test_ECDH_compute_key_null_key_Failure()
2959 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/
DNativeCryptoTest.java2956 NativeCrypto.ECDH_compute_key(out, outOffset, pkey1Ref, pkey2Ref); in test_ECDH_compute_key_null_key_Failure()
2960 NativeCrypto.ECDH_compute_key(out, outOffset, null, pkey2Ref); in test_ECDH_compute_key_null_key_Failure()
2968 NativeCrypto.ECDH_compute_key(out, outOffset, pkey1Ref, null); in test_ECDH_compute_key_null_key_Failure()
/external/grpc-grpc/src/objective-c/
Dgrpc_shadow_boringssl_symbol_list1890 ECDH_compute_key
DBoringSSL-GRPC.podspec3442 '#define ECDH_compute_key GRPC_SHADOW_ECDH_compute_key',
/external/boringssl/src/util/fipstools/acvp/modulewrapper/
Dmodulewrapper.cc1758 ECDH_compute_key(output.data(), output.size(), their_point.get(), in ECDH()
/external/grpc-grpc/src/core/tsi/
Dgrpc_shadow_boringssl.h1918 #define ECDH_compute_key GRPC_SHADOW_ECDH_compute_key macro
/external/rust/crates/grpcio-sys/grpc/src/boringssl/
Dboringssl_prefix_symbols.h1271 #define ECDH_compute_key BORINGSSL_ADD_PREFIX(BORINGSSL_PREFIX, ECDH_compute_key) macro
/external/conscrypt/common/src/jni/main/cpp/conscrypt/
Dnative_crypto.cc2318 int outputLength = ECDH_compute_key(&out[stdOutOffset], out.size() - stdOutOffset, pubkeyPoint, in NativeCrypto_ECDH_compute_key()
10411 CONSCRYPT_NATIVE_METHOD(ECDH_compute_key, "([BI" REF_EVP_PKEY REF_EVP_PKEY ")I"),