blob: 5f6ee0a164d86aa494c980058a5acbf8d0959750 [file] [log] [blame]
Vadim Bendebury54a3d362015-06-01 15:26:03 -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_POLICYNV_FP_H_
8#define __TPM2_POLICYNV_FP_H_
9
10typedef struct {
11 TPM_HANDLE policySession;
12 TPMI_RH_NV_INDEX nvIndex;
13 TPM_HANDLE authHandle;
14 UINT32 offset;
15 TPM_EO operation;
16 TPM2B_DATA operandB;
17} PolicyNV_In;
18
19TPM_RC TPM2_PolicyNV(
20 PolicyNV_In *in // IN: input parameter list
21);
22
23#endif // __TPM2_POLICYNV_FP_H_