// Copyright (c) 2013 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "net/android/keystore.h" #include #include "base/android/jni_android.h" #include "base/android/jni_array.h" #include "base/android/jni_string.h" #include "base/logging.h" #include "jni/AndroidKeyStore_jni.h" using base::android::AttachCurrentThread; using base::android::ConvertUTF8ToJavaString; using base::android::HasException; using base::android::JavaByteArrayToByteVector; using base::android::JavaRef; using base::android::ScopedJavaLocalRef; using base::android::ToJavaByteArray; namespace net { namespace android { bool SignWithPrivateKey(const base::android::JavaRef& private_key_ref, base::StringPiece algorithm, base::span input, std::vector* signature) { JNIEnv* env = AttachCurrentThread(); ScopedJavaLocalRef algorithm_ref = ConvertUTF8ToJavaString(env, algorithm); DCHECK(!algorithm_ref.is_null()); // Convert message to byte[] array. ScopedJavaLocalRef input_ref = ToJavaByteArray(env, input.data(), input.size()); DCHECK(!input_ref.is_null()); // Invoke platform API ScopedJavaLocalRef signature_ref = Java_AndroidKeyStore_signWithPrivateKey(env, private_key_ref, algorithm_ref, input_ref); if (HasException(env) || signature_ref.is_null()) return false; // Write signature to string. JavaByteArrayToByteVector(env, signature_ref.obj(), signature); return true; } AndroidEVP_PKEY* GetOpenSSLSystemHandleForPrivateKey( const JavaRef& private_key_ref) { JNIEnv* env = AttachCurrentThread(); // Note: the pointer is passed as a jint here because that's how it // is stored in the Java object. Java doesn't have a primitive type // like intptr_t that matches the size of pointers on the host // machine, and Android only runs on 32-bit CPUs. // // Given that this routine shall only be called on Android < 4.2, // this won't be a problem in the far future (e.g. when Android gets // ported to 64-bit environments, if ever). long pkey = Java_AndroidKeyStore_getOpenSSLHandleForPrivateKey(env, private_key_ref); return reinterpret_cast(pkey); } ScopedJavaLocalRef GetOpenSSLEngineForPrivateKey( const JavaRef& private_key_ref) { JNIEnv* env = AttachCurrentThread(); ScopedJavaLocalRef engine = Java_AndroidKeyStore_getOpenSSLEngineForPrivateKey(env, private_key_ref); return engine; } } // namespace android } // namespace net