blob: d2ecfea9070a8399d0a325f8b2d503dc256df5e7 [file] [log] [blame]
// Copyright (c) 2013 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_MOCK_CRYPTO_H_
#define CRYPTOHOME_MOCK_CRYPTO_H_
#include "cryptohome/crypto.h"
#include <string>
#include <brillo/secure_blob.h>
#include <gmock/gmock.h>
#include "cryptohome/attestation.pb.h"
namespace cryptohome {
class Platform;
class MockCrypto : public Crypto {
public:
MockCrypto() : Crypto(NULL) {}
virtual ~MockCrypto() {}
MOCK_METHOD(CryptoError, EnsureTpm, (bool), (const, override));
};
} // namespace cryptohome
#endif // CRYPTOHOME_MOCK_CRYPTO_H_