blob: b83c207509c2823045cbcd56bdca05262cc8c710 [file] [log] [blame]
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -07001// Copyright 2015 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
Vadim Bendeburyef5c3332015-05-29 23:01:20 -07004
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -07005// THIS CODE IS GENERATED - DO NOT MODIFY!
6
Vadim Bendebury776e2362015-09-04 16:14:53 -07007#ifndef TPM2_GETTIME_FP_H_
8#define TPM2_GETTIME_FP_H_
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -07009
10#include "tpm_generated.h"
Vadim Bendeburyef5c3332015-05-29 23:01:20 -070011
12typedef struct {
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070013 TPMI_RH_ENDORSEMENT privacyAdminHandle;
14 TPMI_DH_OBJECT signHandle;
15 TPM2B_DATA qualifyingData;
16 TPMT_SIG_SCHEME inScheme;
Vadim Bendeburyef5c3332015-05-29 23:01:20 -070017} GetTime_In;
18
19typedef struct {
Vadim Bendeburyf788ffb2015-06-05 12:57:27 -070020 TPM2B_ATTEST timeInfo;
21 TPMT_SIGNATURE signature;
Vadim Bendeburyef5c3332015-05-29 23:01:20 -070022} GetTime_Out;
23
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070024// Executes GetTime with request handles and parameters from
25// |in| and computes response handles and parameters to |out|.
26TPM_RC TPM2_GetTime(GetTime_In* in, GetTime_Out* out);
Vadim Bendeburyef5c3332015-05-29 23:01:20 -070027
Vadim Bendebury776e2362015-09-04 16:14:53 -070028// Unmarshals any request parameters starting at |request_parameter_buffer|.
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070029// Executes command. Marshals any response handles and parameters to the
Vadim Bendebury776e2362015-09-04 16:14:53 -070030// global response buffer and computes |*response_handle_buffer_size| and
31// |*response_parameter_buffer_size|. If |tag| == TPM_ST_SESSIONS, marshals
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070032// parameter_size indicating the size of the parameter area. parameter_size
33// field is located between the handle area and parameter area.
34TPM_RC Exec_GetTime(TPMI_ST_COMMAND_TAG tag,
Vadim Bendebury776e2362015-09-04 16:14:53 -070035 BYTE** request_parameter_buffer,
36 INT32* request_parameter_buffer_size,
37 TPM_HANDLE request_handles[],
38 UINT32* response_handle_buffer_size,
39 UINT32* response_parameter_buffer_size);
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070040
41#endif // TPM2_GETTIME_FP_H