blob: 27b6c13bafb24c2fc7f17804c6ce0326ad56a66f [file] [log] [blame]
Vadim Bendeburyb86371b2015-05-27 18:16:19 -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 __SOURCE_ENTITY_FP_H
8#define __SOURCE_ENTITY_FP_H
9
Vadim Bendebury1bb3d5f2015-06-01 18:07:11 -070010UINT16 EntityGetAuthValue(
11 TPMI_DH_ENTITY handle, // IN: handle of entity
12 AUTH_VALUE *auth // OUT: authValue of the entity
13 );
Vadim Bendeburyb86371b2015-05-27 18:16:19 -070014TPMI_RH_HIERARCHY EntityGetHierarchy(
15 TPMI_DH_ENTITY handle // IN :handle of entity
16);
Vadim Bendeburyda725062015-05-31 14:41:18 -070017TPM_RC EntityGetLoadStatus(
18 TPM_HANDLE *handle, // IN/OUT: handle of the entity
19 TPM_CC commandCode // IN: the commmandCode
20 );
Vadim Bendebury54a3d362015-06-01 15:26:03 -070021UINT16 EntityGetName(
22 TPMI_DH_ENTITY handle, // IN: handle of entity
23 NAME *name // OUT: name of entity
24 );
25
26#endif // __SOURCE_ENTITY_FP_H