naiveproxy/net/cert/test_root_certs_fuchsia.cc

47 lines
1.2 KiB
C++
Raw Normal View History

2018-02-02 13:49:39 +03:00
// Copyright 2017 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/cert/test_root_certs.h"
#include "base/location.h"
#include "base/logging.h"
#include "net/cert/internal/cert_errors.h"
#include "net/cert/internal/parsed_certificate.h"
#include "net/cert/x509_certificate.h"
#include "third_party/boringssl/src/include/openssl/pool.h"
namespace net {
bool TestRootCerts::Add(X509Certificate* certificate) {
CertErrors errors;
auto parsed = ParsedCertificate::Create(
bssl::UniquePtr<CRYPTO_BUFFER>(
X509Certificate::DupOSCertHandle(certificate->os_cert_handle())),
ParseCertificateOptions(), &errors);
if (!parsed) {
LOG(ERROR) << "Failed to parse DER certificate: " << errors.ToDebugString();
return false;
}
test_trust_store_.AddTrustAnchor(parsed);
empty_ = false;
return true;
}
void TestRootCerts::Clear() {
test_trust_store_.Clear();
empty_ = true;
}
bool TestRootCerts::IsEmpty() const {
return empty_;
}
TestRootCerts::~TestRootCerts() {}
void TestRootCerts::Init() {
empty_ = true;
}
} // namespace net