blob: 0b0cbf33be6a35b280a122d8724d1da07d33ed04 [file] [log] [blame]
Vadim Bendebury1ba13282015-05-29 22:39:54 -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_CERTIFY_FP_H
8#define __TPM2_CERTIFY_FP_H
9
10typedef struct {
11 TPMI_DH_OBJECT signHandle;
12 TPMI_DH_OBJECT objectHandle;
13 TPMT_SIG_SCHEME inScheme;
14 TPM2B_DATA qualifyingData;
15} Certify_In;
16
17typedef struct {
18 TPM2B_ATTEST certifyInfo;
19 TPMT_SIGNATURE signature;
20} Certify_Out;
21
22TPM_RC TPM2_Certify(
23 Certify_In *in, // IN: input parameter list
24 Certify_Out *out // OUT: output parameter list
25);
26
27#endif // __TPM2_CERTIFY_FP_H