blob: 51728c9169443669e2f530c9eae856a0a30ca03a [file] [log] [blame]
Vadim Bendeburyf0a510e2015-06-01 12:11:58 -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_PCR_SETAUTHPOLICY_FP_H_
8#define __TPM2_PCR_SETAUTHPOLICY_FP_H_
9
10typedef struct {
11 TPMI_DH_PCR pcrNum;
12 TPMI_ALG_HASH hashAlg;
13 TPM2B_DIGEST authPolicy;
14} PCR_SetAuthPolicy_In;
15
16TPM_RC TPM2_PCR_SetAuthPolicy(
17 PCR_SetAuthPolicy_In *in // IN: input parameter list
18);
19
20#endif // __TPM2_PCR_SETAUTHPOLICY_FP_H_