blob: f2f6572531599f2519504bef26075b838911764d [file] [log] [blame]
Vadim Bendeburyb0d692f2015-05-29 22:54:52 -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_EVENTSEQUENCECOMPLETE_FP_H
8#define __TPM2_EVENTSEQUENCECOMPLETE_FP_H
9
10typedef struct {
11 TPMI_DH_OBJECT sequenceHandle;
12 TPMI_DH_PCR pcrHandle;
13 TPM2B_DATA buffer;
14} EventSequenceComplete_In;
15
16typedef struct {
17 struct {
18 UINT16 count;
19 TPMT_HA digests[HASH_COUNT];
20 } results;
21} EventSequenceComplete_Out;
22
23TPM_RC TPM2_EventSequenceComplete(
24 EventSequenceComplete_In *in, // IN: input parameter list
25 EventSequenceComplete_Out *out // OUT: output parameter list
26 );
27
28#endif // __TPM2_EVENTSEQUENCECOMPLETE_FP_H