blob: 8809bcc80ab888ec6d58487de67f527444afbfcf [file] [log] [blame]
// Copyright 2020 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CRYPTOHOME_KEY_CHALLENGE_SERVICE_FACTORY_H_
#define CRYPTOHOME_KEY_CHALLENGE_SERVICE_FACTORY_H_
#include <memory>
#include <string>
#include <base/memory/ref_counted.h>
#include <dbus/bus.h>
#include "cryptohome/key_challenge_service.h"
namespace cryptohome {
class KeyChallengeServiceFactory {
public:
KeyChallengeServiceFactory() = default;
KeyChallengeServiceFactory(const KeyChallengeServiceFactory&) = delete;
KeyChallengeServiceFactory& operator=(const KeyChallengeServiceFactory&) =
delete;
virtual ~KeyChallengeServiceFactory() = default;
virtual std::unique_ptr<KeyChallengeService> New(
scoped_refptr<::dbus::Bus> bus,
const std::string& key_delegate_dbus_service_name) = 0;
};
} // namespace cryptohome
#endif // CRYPTOHOME_KEY_CHALLENGE_SERVICE_FACTORY_H_