blob: a77c7652a8b3622d4ad76d75a314f209dcc294d1 [file] [log] [blame]
Vadim Bendebury775f3b32015-06-01 17:41:33 -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_READPUBLIC_FP_H_
8#define __TPM2_READPUBLIC_FP_H_
9
10typedef struct {
11 TPMI_DH_OBJECT objectHandle;
12} ReadPublic_In;
13
14typedef struct {
15 TPM2B_PUBLIC outPublic;
16 TPM2B_NAME name;
17 TPM2B_NAME qualifiedName;
18} ReadPublic_Out;
19
20TPM_RC TPM2_ReadPublic(
21 ReadPublic_In *in, // IN: input parameter list
22 ReadPublic_Out *out // OUT: output parameter list
23);
24
25#endif // __TPM2_READPUBLIC_FP_H_