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