blob: ace09b2092bb8e4d3952e22e9058282ecdfa66eb [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 {
Vadim Bendeburyf788ffb2015-06-05 12:57:27 -070011 TPM_RH hierarchy;
12 TPMI_DH_OBJECT sequenceHandle;
13 TPM2B_DATA buffer;
Vadim Bendeburya64fb912015-06-01 18:01:25 -070014} SequenceComplete_In;
15
16typedef struct {
Vadim Bendeburyf788ffb2015-06-05 12:57:27 -070017 TPMT_TK_HASHCHECK validation;
18 TPM2B_DIGEST result;
Vadim Bendeburya64fb912015-06-01 18:01:25 -070019} SequenceComplete_Out;
20
21TPM_RC TPM2_SequenceComplete(
Vadim Bendeburyf788ffb2015-06-05 12:57:27 -070022 SequenceComplete_In *in, // IN: input parameter list
23 SequenceComplete_Out *out // OUT: output parameter list
24 );
Vadim Bendeburya64fb912015-06-01 18:01:25 -070025
Vadim Bendeburyf788ffb2015-06-05 12:57:27 -070026#endif // __TPM2_SEQUENCECOMPLETE_FP_H_