blob: 80cbec6e6c68ae2a93f3c9ca186c773307f9c1f3 [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_TPM_BOUND_TO_PCR_AUTH_BLOCK_H_
#define CRYPTOHOME_TPM_BOUND_TO_PCR_AUTH_BLOCK_H_
#include "cryptohome/auth_block.h"
#include <string>
#include <base/gtest_prod_util.h>
#include <base/macros.h>
#include "cryptohome/crypto.h"
#include "cryptohome/tpm.h"
#include "cryptohome/tpm_auth_block_utils.h"
#include "cryptohome/tpm_init.h"
#include "cryptohome/vault_keyset.pb.h"
namespace cryptohome {
class TpmBoundToPcrAuthBlock : public AuthBlock {
public:
TpmBoundToPcrAuthBlock(Tpm* tpm, TpmInit* tpm_init);
bool Derive(const AuthInput& auth_input,
const AuthBlockState& state,
KeyBlobs* key_blobs,
CryptoError* error) override;
private:
// Decrypt the |vault_key| that is bound to PCR, returning the |vkk_iv|
// and |vkk_key|.
bool DecryptTpmBoundToPcr(const brillo::SecureBlob& vault_key,
const brillo::SecureBlob& tpm_key,
const brillo::SecureBlob& salt,
CryptoError* error,
brillo::SecureBlob* vkk_iv,
brillo::SecureBlob* vkk_key) const;
Tpm* tpm_;
TpmInit* tpm_init_;
TpmAuthBlockUtils utils_;
FRIEND_TEST_ALL_PREFIXES(TPMAuthBlockTest, DecryptBoundToPcrTest);
DISALLOW_COPY_AND_ASSIGN(TpmBoundToPcrAuthBlock);
};
} // namespace cryptohome
#endif // CRYPTOHOME_TPM_BOUND_TO_PCR_AUTH_BLOCK_H_