Vadim Bendebury | c4b77e0 | 2015-05-27 15:29:50 -0700 | [diff] [blame] | 1 | /* |
| 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_OBJECT_FP_H |
| 8 | #define __TPM2_OBJECT_FP_H |
| 9 | |
Vadim Bendebury | 59727bd | 2015-05-28 14:58:08 -0700 | [diff] [blame] | 10 | void ObjectFlushHierarchy( |
| 11 | TPMI_RH_HIERARCHY hierarchy // IN: hierarchy to be flush |
| 12 | ); |
Vadim Bendebury | c4b77e0 | 2015-05-27 15:29:50 -0700 | [diff] [blame] | 13 | OBJECT* ObjectGet( |
| 14 | TPMI_DH_OBJECT handle // IN: handle of the object |
| 15 | ); |
Vadim Bendebury | 1ba1328 | 2015-05-29 22:39:54 -0700 | [diff] [blame] | 16 | UINT16 ObjectGetName( |
| 17 | TPMI_DH_OBJECT handle, // IN: handle of the object |
| 18 | NAME *name // OUT: name of the object |
| 19 | ); |
Vadim Bendebury | b86371b | 2015-05-27 18:16:19 -0700 | [diff] [blame] | 20 | void ObjectGetQualifiedName( |
| 21 | TPMI_DH_OBJECT handle, // IN: handle of the object |
| 22 | TPM2B_NAME *qualifiedName // OUT: qualified name of the object |
| 23 | ); |
Vadim Bendebury | c4b77e0 | 2015-05-27 15:29:50 -0700 | [diff] [blame] | 24 | |
| 25 | #endif // __TPM2_OBJECT_FP_H |