blob: 12a8041af3a2eb9ad05f84ea68fc6c76fe085b8b [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 );
19
20#endif // __TPM2_HIERARCHY_FP_H
21
Vadim Bendebury62f9d012015-05-31 15:54:32 -070022void HierarchyPreInstall_Init(
23 void
24 );