blob: 58ff0932b678b275d55acac57a83c564a4538533 [file] [log] [blame]
Vadim Bendebury1a1c3332015-06-01 18:39:22 -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_SIGN_FP_H_
8#define __TPM2_SIGN_FP_H_
9
10typedef struct {
11 TPMI_DH_OBJECT keyHandle;
12 TPMT_SIG_SCHEME inScheme;
13 TPM2B_DIGEST digest;
14 TPMT_TK_COMMON validation;
15} Sign_In;
16
17typedef struct {
18 TPMT_SIGNATURE signature;
19} Sign_Out;
20
21TPM_RC TPM2_Sign(
22 Sign_In *in, // IN: input parameter list
23 Sign_Out *out // OUT: output parameter list
24);
25
26#endif // __TPM2_SIGN_FP_H_