blob: 71291bb7c2055f93dc69d7acd8627bb08ad8ca91 [file] [log] [blame]
// Copyright 2017 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/ssl/client_cert_identity_test_util.h"
#include <memory>
#include <utility>
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "crypto/evp.h"
#include "net/ssl/openssl_private_key.h"
#include "net/ssl/ssl_private_key.h"
#include "net/ssl/test_ssl_private_key.h"
#include "net/test/cert_test_util.h"
#include "third_party/boringssl/src/include/openssl/evp.h"
namespace net {
FakeClientCertIdentity::FakeClientCertIdentity(
scoped_refptr<X509Certificate> cert,
scoped_refptr<SSLPrivateKey> key)
: ClientCertIdentity(std::move(cert)), key_(std::move(key)) {}
FakeClientCertIdentity::~FakeClientCertIdentity() = default;
// static
std::unique_ptr<FakeClientCertIdentity>
FakeClientCertIdentity::CreateFromCertAndKeyFiles(
const base::FilePath& dir,
const std::string& cert_filename,
const std::string& key_filename) {
scoped_refptr<X509Certificate> cert =
net::ImportCertFromFile(dir, cert_filename);
if (!cert)
return nullptr;
std::optional<std::vector<uint8_t>> pkcs8 =
base::ReadFileToBytes(dir.AppendASCII(key_filename));
if (!pkcs8) {
return nullptr;
}
bssl::UniquePtr<EVP_PKEY> pkey = crypto::evp::PrivateKeyFromBytes(*pkcs8);
if (!pkey) {
return nullptr;
}
scoped_refptr<SSLPrivateKey> ssl_private_key =
WrapOpenSSLPrivateKey(std::move(pkey));
if (!ssl_private_key)
return nullptr;
return std::make_unique<FakeClientCertIdentity>(cert, ssl_private_key);
}
// static
std::unique_ptr<FakeClientCertIdentity>
FakeClientCertIdentity::CreateFromCertAndFailSigning(
const base::FilePath& dir,
const std::string& cert_filename) {
scoped_refptr<X509Certificate> cert =
net::ImportCertFromFile(dir, cert_filename);
if (!cert)
return nullptr;
return std::make_unique<FakeClientCertIdentity>(
cert, CreateFailSigningSSLPrivateKey());
}
std::unique_ptr<FakeClientCertIdentity> FakeClientCertIdentity::Copy() {
return std::make_unique<FakeClientCertIdentity>(certificate(), key_);
}
void FakeClientCertIdentity::AcquirePrivateKey(
base::OnceCallback<void(scoped_refptr<SSLPrivateKey>)>
private_key_callback) {
std::move(private_key_callback).Run(key_);
}
ClientCertIdentityList FakeClientCertIdentityListFromCertificateList(
const CertificateList& certs) {
ClientCertIdentityList result;
for (const auto& cert : certs) {
result.push_back(std::make_unique<FakeClientCertIdentity>(cert, nullptr));
}
return result;
}
} // namespace net