Vadim Bendebury | 54a3d36 | 2015-06-01 15:26:03 -0700 | [diff] [blame] | 1 | /* |
| 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 | |
| 10 | typedef 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 | |
| 19 | TPM_RC TPM2_PolicyNV( |
| 20 | PolicyNV_In *in // IN: input parameter list |
| 21 | ); |
| 22 | |
| 23 | #endif // __TPM2_POLICYNV_FP_H_ |