blob: 7bc8f4c7521e8d1b8851bb826b48c752a1410e79 [file] [log] [blame]
Vadim Bendeburybc470c72015-05-29 22:58:33 -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_GETCOMMANDAUDITDIGEST_FP_H
8#define __TPM2_GETCOMMANDAUDITDIGEST_FP_H
9
10typedef struct {
Vadim Bendeburyf788ffb2015-06-05 12:57:27 -070011 TPMI_DH_OBJECT signHandle;
12 TPMT_SIG_SCHEME inScheme;
13 TPM2B_DATA qualifyingData;
Vadim Bendeburybc470c72015-05-29 22:58:33 -070014} GetCommandAuditDigest_In;
15
16typedef struct {
Vadim Bendeburyf788ffb2015-06-05 12:57:27 -070017 TPM2B_ATTEST auditInfo;
18 TPMT_SIGNATURE signature;
Vadim Bendeburybc470c72015-05-29 22:58:33 -070019} GetCommandAuditDigest_Out;
20
21TPM_RC TPM2_GetCommandAuditDigest(
Vadim Bendeburyf788ffb2015-06-05 12:57:27 -070022 GetCommandAuditDigest_In *in, // IN: input parameter list
23 GetCommandAuditDigest_Out *out // OUT: output parameter list
24 );
Vadim Bendeburybc470c72015-05-29 22:58:33 -070025
Vadim Bendeburyf788ffb2015-06-05 12:57:27 -070026#endif // __TPM2_GETCOMMANDAUDITDIGEST_FP_H