blob: d46014beb26d4289de9ac7d2a9db218e384ace74 [file] [log] [blame]
Vadim Bendebury1c869872015-06-01 15:41:32 -07001/*
2 * Copyright 2015 The Chromium OS Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
6
7#ifndef __TPM2_POLICYPCR_FP_H_
8#define __TPM2_POLICYPCR_FP_H_
9
10typedef struct {
Vadim Bendeburyf788ffb2015-06-05 12:57:27 -070011 TPM_HANDLE policySession;
12 TPML_PCR_SELECTION pcrs;
13 TPM2B_DIGEST pcrDigest;
Vadim Bendebury1c869872015-06-01 15:41:32 -070014} PolicyPCR_In;
15
Vadim Bendeburyf788ffb2015-06-05 12:57:27 -070016TPM_RC TPM2_PolicyPCR(PolicyPCR_In *in // IN: input parameter list
17 );
Vadim Bendebury1c869872015-06-01 15:41:32 -070018
Vadim Bendeburyf788ffb2015-06-05 12:57:27 -070019#endif // __TPM2_POLICYPCR_FP_H_