blob: 426b24707cc1ea0b00d2615289cddcc032440181 [file] [log] [blame]
// Copyright 2021 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 RMAD_SYSTEM_CRYPTOHOME_CLIENT_H_
#define RMAD_SYSTEM_CRYPTOHOME_CLIENT_H_
#include <cstdint>
namespace rmad {
class CryptohomeClient {
public:
CryptohomeClient() = default;
virtual ~CryptohomeClient() = default;
virtual bool IsCcdBlocked() = 0;
};
} // namespace rmad
#endif // RMAD_SYSTEM_CRYPTOHOME_CLIENT_H_