Home
last modified time | relevance | path

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

/external/boringssl/src/include/openssl/
Decdh.h88 OPENSSL_EXPORT int ECDH_compute_key(void *out, size_t outlen,
/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
/external/conscrypt/src/main/java/org/conscrypt/
DOpenSSLECDHKeyAgreement.java66 int actualResultLength = NativeCrypto.ECDH_compute_key( in engineDoPhase()
DNativeCrypto.java209 public static native int ECDH_compute_key(byte[] out, int outOffset, in ECDH_compute_key() method in NativeCrypto
/external/boringssl/src/crypto/evp/
Dp_ec.c178 ret = ECDH_compute_key(key, outlen, pubkey, eckey, 0); in pkey_ec_derive()
/external/conscrypt/src/test/java/org/conscrypt/
DNativeCryptoTest.java2921 NativeCrypto.ECDH_compute_key(out, outOffset, pkey1Ref, pkey2Ref); in test_ECDH_compute_key_null_key_Failure()
2925 NativeCrypto.ECDH_compute_key(out, outOffset, null, pkey2Ref); in test_ECDH_compute_key_null_key_Failure()
2932 NativeCrypto.ECDH_compute_key(out, outOffset, pkey1Ref, null); in test_ECDH_compute_key_null_key_Failure()
/external/conscrypt/src/main/native/
Dorg_conscrypt_NativeCrypto.cpp4061 ECDH_compute_key(&out[outOffset], out.size() - outOffset, pubkeyPoint, privkey.get(),
11107 NATIVE_METHOD(NativeCrypto, ECDH_compute_key, "([BI" REF_EVP_PKEY REF_EVP_PKEY ")I"),