blob: 5db1638a1a922eaca22a42bb0b0d11230b08b100 [file] [log] [blame]
Vadim Bendeburyb48058f2015-06-01 18:04: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_SEQUENCEUPDATE_FP_H_
8#define __TPM2_SEQUENCEUPDATE_FP_H_
9
10typedef struct {
Vadim Bendeburyf788ffb2015-06-05 12:57:27 -070011 TPMI_DH_OBJECT sequenceHandle;
12 TPM2B_DATA buffer;
Vadim Bendeburyb48058f2015-06-01 18:04:33 -070013} SequenceUpdate_In;
14
Vadim Bendeburyf788ffb2015-06-05 12:57:27 -070015TPM_RC TPM2_SequenceUpdate(SequenceUpdate_In *in // IN: input parameter list
16 );
Vadim Bendeburyb48058f2015-06-01 18:04:33 -070017
Vadim Bendeburyf788ffb2015-06-05 12:57:27 -070018#endif // __TPM2_SEQUENCEUPDATE_FP_H_