blob: 793398293db7a047e729b7ecdf0967fda0d7bc7d [file] [log] [blame]
Vadim Bendebury258ca732015-05-28 16:35:41 -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_COMMANDAUDIT_FP_H
8#define __TPM2_COMMANDAUDIT_FP_H
9
Vadim Bendeburybbd79002015-05-31 14:44:07 -070010TPMI_YES_NO CommandAuditCapGetCCList(
11 TPM_CC commandCode, // IN: start command code
12 UINT32 count, // IN: count of returned TPM_CC
13 TPML_CC *commandList // OUT: list of TPM_CC
14);
Vadim Bendeburybc470c72015-05-29 22:58:33 -070015void CommandAuditGetDigest(
16 TPM2B_DIGEST *digest // OUT: command digest
17);
Vadim Bendebury62f9d012015-05-31 15:54:32 -070018void CommandAuditPreInstall_Init(
19 void
20 );
Vadim Bendebury258ca732015-05-28 16:35:41 -070021BOOL CommandAuditSet(
22 TPM_CC commandCode // IN: command code
23);
24
25#endif // __TPM2_COMMANDAUDIT_FP_H