blob: 981b54d58ae483ceb661eaafc0c55f96e8eaed70 [file] [log] [blame]
Vadim Bendeburyd60f8602015-05-29 23:03:11 -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_HMAC_START_FP_H
8#define __TPM2_HMAC_START_FP_H
9
10typedef struct {
11 TPM_HANDLE handle;
12 TPM_ALG_ID hashAlg;
13 TPM2B_AUTH auth;
14} HMAC_Start_In;
15
16typedef struct {
17 TPMI_DH_OBJECT sequenceHandle;
18} HMAC_Start_Out;
19
20TPM_RC TPM2_HMAC_Start(
21 HMAC_Start_In *in, // IN: input parameter list
22 HMAC_Start_Out *out // OUT: output parameter list
23 );
24
25#endif // __TPM2_HMAC_START_FP_H