// 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. #ifndef COMPONENTS_POLICY_TEST_SUPPORT_SIGNATURE_PROVIDER_H_ #define COMPONENTS_POLICY_TEST_SUPPORT_SIGNATURE_PROVIDER_H_ #include <map> #include <memory> #include <string> #include <vector> #include "components/policy/proto/device_management_backend.pb.h" namespace crypto { class RSAPrivateKey; } // namespace crypto em; namespace policy { // Provides access to predefined test signing keys and allows for data signing // using those keys. Keys are indexed and retrieved by 1-based key versions. class SignatureProvider { … }; } // namespace policy #endif // COMPONENTS_POLICY_TEST_SUPPORT_SIGNATURE_PROVIDER_H_