blob: 17ff32be2c1ae39a57ec1c8e036a6253b19880f8 [file] [log] [blame]
Vadim Bendeburycddcbfe2015-05-29 23:03:58 -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_HASHSEQUENCESTART_FP_H
8#define __TPM2_HASHSEQUENCESTART_FP_H
9
10typedef struct {
11 TPMI_ALG_HASH hashAlg;
12 TPM2B_AUTH auth;
13} HashSequenceStart_In;
14
15typedef struct {
16 TPMI_DH_OBJECT sequenceHandle;
17} HashSequenceStart_Out;
18
19TPM_RC TPM2_HashSequenceStart(
20 HashSequenceStart_In *in, // IN: input parameter list
21 HashSequenceStart_Out *out // OUT: output parameter list
22 );
23
24#endif // __TPM2_HASHSEQUENCESTART_FP_H