blob: 053f5dde2c916ba38fa79ea91f4cf52bacdc45f3 [file] [log] [blame]
Vadim Bendebury483dcb82015-05-31 18:56:26 -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_NV_INCREMENT_FP_H
8#define __TPM2_NV_INCREMENT_FP_H
9
10typedef struct {
11 TPM_HANDLE authHandle;
12 TPMI_RH_NV_INDEX nvIndex;
13} NV_Increment_In;
14
15TPM_RC TPM2_NV_Increment(
16 NV_Increment_In *in // IN: input parameter list
17);
18
19#endif // __TPM2_NV_INCREMENT_FP_H