blob: 2301943fc01e0fcfce3b76c283eda397ce3e854f [file] [log] [blame]
Vadim Bendebury762a65d2015-05-29 23:07:01 -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_LOADEXTERNAL_FP_H
8#define __TPM2_LOADEXTERNAL_FP_H
9
10typedef struct {
11 TPMI_RH_HIERARCHY hierarchy;
12 TPM2B_PUBLIC inPublic;
13 TPM2B_SENSITIVE inPrivate;
14} LoadExternal_In;
15
16typedef struct {
17 TPM2B_NAME name;
18 TPMI_DH_OBJECT objectHandle;
19} LoadExternal_Out;
20
21TPM_RC TPM2_LoadExternal(
22 LoadExternal_In *in, // IN: input parameter list
23 LoadExternal_Out *out // OUT: output parameter list
24 );
25
26#endif // __TPM2_LOADEXTERNAL_FP_H