/external/chromium_org/third_party/boringssl/src/crypto/ecdh/ |
D | ecdh.c | 75 int ECDH_compute_key(void *out, size_t outlen, const EC_POINT *pub_key, in ECDH_compute_key() function 96 OPENSSL_PUT_ERROR(ECDH, ECDH_compute_key, ECDH_R_NO_PRIVATE_VALUE); in ECDH_compute_key() 104 OPENSSL_PUT_ERROR(ECDH, ECDH_compute_key, ERR_R_MALLOC_FAILURE); in ECDH_compute_key() 109 OPENSSL_PUT_ERROR(ECDH, ECDH_compute_key, ECDH_R_POINT_ARITHMETIC_FAILURE); in ECDH_compute_key() 114 OPENSSL_PUT_ERROR(ECDH, ECDH_compute_key, ECDH_R_POINT_ARITHMETIC_FAILURE); in ECDH_compute_key() 121 OPENSSL_PUT_ERROR(ECDH, ECDH_compute_key, ERR_R_INTERNAL_ERROR); in ECDH_compute_key() 126 OPENSSL_PUT_ERROR(ECDH, ECDH_compute_key, ERR_R_MALLOC_FAILURE); in ECDH_compute_key() 132 OPENSSL_PUT_ERROR(ECDH, ECDH_compute_key, ERR_R_BN_LIB); in ECDH_compute_key() 138 OPENSSL_PUT_ERROR(ECDH, ECDH_compute_key, ECDH_R_KDF_FAILED); in ECDH_compute_key()
|
/external/openssl/crypto/ecdh/ |
D | ech_key.c | 72 int ECDH_compute_key(void *out, size_t outlen, const EC_POINT *pub_key, in ECDH_compute_key() function
|
D | ecdh.h | 94 int ECDH_compute_key(void *out, size_t outlen, const EC_POINT *pub_key, EC_KEY *ecdh,
|
D | ecdhtest.c | 211 aout=ECDH_compute_key(abuf,alen,EC_KEY_get0_public_key(b),a,KDF1_SHA1); in test_ecdh_curve() 228 bout=ECDH_compute_key(bbuf,blen,EC_KEY_get0_public_key(a),b,KDF1_SHA1); in test_ecdh_curve()
|
/external/chromium_org/third_party/boringssl/src/include/openssl/ |
D | ecdh.h | 85 OPENSSL_EXPORT int ECDH_compute_key(void *out, size_t outlen,
|
/external/openssl/include/openssl/ |
D | ecdh.h | 94 int ECDH_compute_key(void *out, size_t outlen, const EC_POINT *pub_key, EC_KEY *ecdh,
|
/external/chromium_org/net/quic/crypto/ |
D | p256_key_exchange_openssl.cc | 99 if (ECDH_compute_key(result, sizeof(result), point.get(), private_key_.get(), in CalculateSharedKey()
|
/external/conscrypt/src/main/java/org/conscrypt/ |
D | OpenSSLECDHKeyAgreement.java | 67 int actualResultLength = NativeCrypto.ECDH_compute_key( in engineDoPhase()
|
D | NativeCrypto.java | 266 public static native int ECDH_compute_key( in ECDH_compute_key() method in NativeCrypto
|
/external/openssl/crypto/ec/ |
D | ec_pmeth.c | 197 ret = ECDH_compute_key(key, outlen, pubkey, ctx->pkey->pkey.ec, 0); in pkey_ec_derive()
|
/external/chromium_org/third_party/boringssl/src/crypto/evp/ |
D | p_ec.c | 234 ret = ECDH_compute_key(key, outlen, pubkey, eckey, 0); in pkey_ec_derive()
|
/external/openssl/apps/ |
D | speed.c | 2338 secret_size_a = ECDH_compute_key(secret_a, outlen, in MAIN() 2341 secret_size_b = ECDH_compute_key(secret_b, outlen, in MAIN() 2372 ECDH_compute_key(secret_a, outlen, in MAIN()
|
/external/conscrypt/src/test/java/org/conscrypt/ |
D | NativeCryptoTest.java | 3083 NativeCrypto.ECDH_compute_key(out, outOffset, pkey1Ref, pkey2Ref); in test_ECDH_compute_key_null_key_Failure() 3087 NativeCrypto.ECDH_compute_key(out, outOffset, 0, pkey2Ref); in test_ECDH_compute_key_null_key_Failure() 3093 NativeCrypto.ECDH_compute_key(out, outOffset, pkey1Ref, 0); in test_ECDH_compute_key_null_key_Failure()
|
/external/openssl/ssl/ |
D | d1_clnt.c | 1386 n=ECDH_compute_key(p, (field_size+7)/8, srvr_ecpoint, clnt_ecdh, NULL); in dtls1_send_client_key_exchange()
|
D | s3_clnt.c | 2953 n=ECDH_compute_key(p, (field_size+7)/8, srvr_ecpoint, clnt_ecdh, NULL); in ssl3_send_client_key_exchange()
|
D | s3_srvr.c | 2834 i = ECDH_compute_key(p, (field_size+7)/8, clnt_ecpoint, srvr_ecdh, NULL); in ssl3_get_client_key_exchange()
|
/external/chromium_org/third_party/boringssl/src/ssl/ |
D | s3_clnt.c | 2160 n=ECDH_compute_key(p, (field_size+7)/8, srvr_ecpoint, clnt_ecdh, NULL); in ssl3_send_client_key_exchange()
|
D | s3_srvr.c | 2124 ecdh_len = ECDH_compute_key(premaster_secret, in ssl3_get_client_key_exchange()
|
/external/conscrypt/src/main/native/ |
D | org_conscrypt_NativeCrypto.cpp | 3908 int outputLength = ECDH_compute_key( in NativeCrypto_ECDH_compute_key() 9634 NATIVE_METHOD(NativeCrypto, ECDH_compute_key, "([BIJJ)I"),
|