Home
last modified time | relevance | path

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

/external/chromium_org/third_party/boringssl/src/crypto/ecdh/
Decdh.c75 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/
Dech_key.c72 int ECDH_compute_key(void *out, size_t outlen, const EC_POINT *pub_key, in ECDH_compute_key() function
Decdh.h94 int ECDH_compute_key(void *out, size_t outlen, const EC_POINT *pub_key, EC_KEY *ecdh,
Decdhtest.c211 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/
Decdh.h85 OPENSSL_EXPORT int ECDH_compute_key(void *out, size_t outlen,
/external/openssl/include/openssl/
Decdh.h94 int ECDH_compute_key(void *out, size_t outlen, const EC_POINT *pub_key, EC_KEY *ecdh,
/external/chromium_org/net/quic/crypto/
Dp256_key_exchange_openssl.cc99 if (ECDH_compute_key(result, sizeof(result), point.get(), private_key_.get(), in CalculateSharedKey()
/external/conscrypt/src/main/java/org/conscrypt/
DOpenSSLECDHKeyAgreement.java67 int actualResultLength = NativeCrypto.ECDH_compute_key( in engineDoPhase()
DNativeCrypto.java266 public static native int ECDH_compute_key( in ECDH_compute_key() method in NativeCrypto
/external/openssl/crypto/ec/
Dec_pmeth.c197 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/
Dp_ec.c234 ret = ECDH_compute_key(key, outlen, pubkey, eckey, 0); in pkey_ec_derive()
/external/openssl/apps/
Dspeed.c2338 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/
DNativeCryptoTest.java3083 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/
Dd1_clnt.c1386 n=ECDH_compute_key(p, (field_size+7)/8, srvr_ecpoint, clnt_ecdh, NULL); in dtls1_send_client_key_exchange()
Ds3_clnt.c2953 n=ECDH_compute_key(p, (field_size+7)/8, srvr_ecpoint, clnt_ecdh, NULL); in ssl3_send_client_key_exchange()
Ds3_srvr.c2834 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/
Ds3_clnt.c2160 n=ECDH_compute_key(p, (field_size+7)/8, srvr_ecpoint, clnt_ecdh, NULL); in ssl3_send_client_key_exchange()
Ds3_srvr.c2124 ecdh_len = ECDH_compute_key(premaster_secret, in ssl3_get_client_key_exchange()
/external/conscrypt/src/main/native/
Dorg_conscrypt_NativeCrypto.cpp3908 int outputLength = ECDH_compute_key( in NativeCrypto_ECDH_compute_key()
9634 NATIVE_METHOD(NativeCrypto, ECDH_compute_key, "([BIJJ)I"),