blob: 44881136cdfc0b7d0b834f8af1a5b6f344fda978 [file] [log] [blame]
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "crypto/unexportable_key.h"
#include "base/bind.h"
#include "base/check.h"
#include "build/build_config.h"
namespace crypto {
namespace {
std::unique_ptr<UnexportableKeyProvider> (*g_mock_provider)() = nullptr;
} // namespace
UnexportableSigningKey::~UnexportableSigningKey() = default;
UnexportableKeyProvider::~UnexportableKeyProvider() = default;
#if BUILDFLAG(IS_WIN)
std::unique_ptr<UnexportableKeyProvider> GetUnexportableKeyProviderWin();
#endif
std::unique_ptr<UnexportableKeyProvider> GetUnexportableKeyProvider() {
if (g_mock_provider) {
return g_mock_provider();
}
#if BUILDFLAG(IS_WIN)
return GetUnexportableKeyProviderWin();
#else
return nullptr;
#endif
}
namespace internal {
void SetUnexportableKeyProviderForTesting(
std::unique_ptr<UnexportableKeyProvider> (*func)()) {
if (g_mock_provider) {
// Nesting ScopedMockUnexportableSigningKeyForTesting is not supported.
CHECK(!func);
g_mock_provider = nullptr;
} else {
g_mock_provider = func;
}
}
} // namespace internal
} // namespace crypto