mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
47 lines
1.2 KiB
C++
47 lines
1.2 KiB
C++
|
// 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
|