Searched refs:pubPkey (Results 1 – 1 of 1) sorted by relevance
/external/conscrypt/common/src/jni/main/cpp/conscrypt/ |
D | native_crypto.cc | 2251 EVP_PKEY* pubPkey = fromContextObject<EVP_PKEY>(env, pubkeyRef); in NativeCrypto_ECDH_compute_key() local 2252 if (pubPkey == nullptr) { in NativeCrypto_ECDH_compute_key() 2261 JNI_TRACE("ECDH_compute_key(%p, %d, %p, %p) <- ptr", outArray, outOffset, pubPkey, privPkey); in NativeCrypto_ECDH_compute_key() 2266 pubPkey, privPkey); in NativeCrypto_ECDH_compute_key() 2276 if (pubPkey == nullptr) { in NativeCrypto_ECDH_compute_key() 2277 JNI_TRACE("ECDH_compute_key(%p) => pubPkey == null", pubPkey); in NativeCrypto_ECDH_compute_key() 2282 bssl::UniquePtr<EC_KEY> pubkey(EVP_PKEY_get1_EC_KEY(pubPkey)); in NativeCrypto_ECDH_compute_key() 2284 JNI_TRACE("ECDH_compute_key(%p) => can't get public key", pubPkey); in NativeCrypto_ECDH_compute_key() 2292 JNI_TRACE("ECDH_compute_key(%p) => can't get public key point", pubPkey); in NativeCrypto_ECDH_compute_key() 2299 JNI_TRACE("ECDH_compute_key(%p) => privKey == null", pubPkey); in NativeCrypto_ECDH_compute_key() [all …]
|