blob: 9cc129c22a793c9a794d947d65b38b3695ba7d46 [file] [log] [blame]
Vadim Bendebury3743ac12015-05-29 22:44:14 -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_HIERARCHY_FP_H
8#define __TPM2_HIERARCHY_FP_H
9
10TPM2B_SEED *HierarchyGetPrimarySeed(
11 TPMI_RH_HIERARCHY hierarchy // IN: hierarchy
12);
13TPM2B_AUTH *HierarchyGetProof(
14 TPMI_RH_HIERARCHY hierarchy // IN: hierarchy constant
15 );
16BOOL HierarchyIsEnabled(
17 TPMI_RH_HIERARCHY hierarchy // IN: hierarchy
18 );
Vadim Bendebury62f9d012015-05-31 15:54:32 -070019void HierarchyPreInstall_Init(
20 void
21 );
Vadim Bendebury523b0eb2015-06-01 18:53:59 -070022void HierarchyStartup(
23 STARTUP_TYPE type // IN: start up type
24 );
25
26#endif // __TPM2_HIERARCHY_FP_H