blob: 5e82c6cb8eafe38778baffd6412cbfa00f808f8b [file] [log] [blame]
Vadim Bendeburya64fb912015-06-01 18:01:25 -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_SEQUENCECOMPLETE_FP_H_
8#define __TPM2_SEQUENCECOMPLETE_FP_H_
9
10typedef struct {
11 TPM_RH hierarchy;
12 TPMI_DH_OBJECT sequenceHandle;
13 TPM2B_DATA buffer;
14} SequenceComplete_In;
15
16typedef struct {
17 TPMT_TK_HASHCHECK validation;
18 TPM2B_DIGEST result;
19} SequenceComplete_Out;
20
21TPM_RC TPM2_SequenceComplete(
22 SequenceComplete_In *in, // IN: input parameter list
23 SequenceComplete_Out *out // OUT: output parameter list
24);
25
26#endif // __TPM2_SEQUENCECOMPLETE_FP_H_