blob: 8e0697c5fe1c65eeb3cfd9df4b72e56a7758ad9e [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 {
Vadim Bendeburyf788ffb2015-06-05 12:57:27 -070011 TPMI_ALG_HASH hashAlg;
12 TPM2B_AUTH auth;
Vadim Bendeburycddcbfe2015-05-29 23:03:58 -070013} HashSequenceStart_In;
14
Vadim Bendeburyf788ffb2015-06-05 12:57:27 -070015typedef struct { TPMI_DH_OBJECT sequenceHandle; } HashSequenceStart_Out;
Vadim Bendeburycddcbfe2015-05-29 23:03:58 -070016
17TPM_RC TPM2_HashSequenceStart(
Vadim Bendeburyf788ffb2015-06-05 12:57:27 -070018 HashSequenceStart_In *in, // IN: input parameter list
19 HashSequenceStart_Out *out // OUT: output parameter list
20 );
Vadim Bendeburycddcbfe2015-05-29 23:03:58 -070021
Vadim Bendeburyf788ffb2015-06-05 12:57:27 -070022#endif // __TPM2_HASHSEQUENCESTART_FP_H