blob: f96fc59207e4f352bd22993a7c55217e19de31b9 [file] [log] [blame]
Vadim Bendeburyd7c98192015-06-01 08:16:56 -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_READPUBLIC_FP_H_
8#define __TPM2_NV_READPUBLIC_FP_H_
9
10typedef struct {
11 TPMI_RH_NV_INDEX nvIndex;
12} NV_ReadPublic_In;
13
14typedef struct {
15 TPM2B_NAME nvName;
16 TPMS_NV_PUBLIC nvPublic;
17} NV_ReadPublic_Out;
18
19
20TPM_RC TPM2_NV_ReadPublic(
21 NV_ReadPublic_In *in, // IN: input parameter list
22 NV_ReadPublic_Out *out // OUT: output parameter list
23);
24
25#endif // __TPM2_NV_READPUBLIC_FP_H_