mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-12-05 03:36:08 +03:00
38 lines
1.3 KiB
C++
38 lines
1.3 KiB
C++
// Copyright 2014 The Chromium Authors
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "net/android/cert_verify_result_android.h"
|
|
|
|
#include "base/android/jni_android.h"
|
|
#include "base/android/jni_array.h"
|
|
|
|
// Must come after all headers that specialize FromJniType() / ToJniType().
|
|
#include "net/net_jni_headers/AndroidCertVerifyResult_jni.h"
|
|
|
|
using base::android::AttachCurrentThread;
|
|
using base::android::JavaArrayOfByteArrayToStringVector;
|
|
using base::android::JavaRef;
|
|
using base::android::ScopedJavaLocalRef;
|
|
|
|
namespace net::android {
|
|
|
|
void ExtractCertVerifyResult(const JavaRef<jobject>& result,
|
|
CertVerifyStatusAndroid* status,
|
|
bool* is_issued_by_known_root,
|
|
std::vector<std::string>* verified_chain) {
|
|
JNIEnv* env = AttachCurrentThread();
|
|
|
|
*status = static_cast<CertVerifyStatusAndroid>(
|
|
Java_AndroidCertVerifyResult_getStatus(env, result));
|
|
|
|
*is_issued_by_known_root =
|
|
Java_AndroidCertVerifyResult_isIssuedByKnownRoot(env, result);
|
|
|
|
ScopedJavaLocalRef<jobjectArray> chain_byte_array =
|
|
Java_AndroidCertVerifyResult_getCertificateChainEncoded(env, result);
|
|
JavaArrayOfByteArrayToStringVector(env, chain_byte_array, verified_chain);
|
|
}
|
|
|
|
} // namespace net::android
|