Jocelyn Bohr | a4ed3aa | 2015-07-30 10:44:16 -0700 | [diff] [blame] | 1 | // 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 Bendebury | 1a1c333 | 2015-06-01 18:39:22 -0700 | [diff] [blame] | 4 | |
Jocelyn Bohr | a4ed3aa | 2015-07-30 10:44:16 -0700 | [diff] [blame] | 5 | // THIS CODE IS GENERATED - DO NOT MODIFY! |
| 6 | |
Vadim Bendebury | 776e236 | 2015-09-04 16:14:53 -0700 | [diff] [blame] | 7 | #ifndef TPM2_SIGN_FP_H_ |
| 8 | #define TPM2_SIGN_FP_H_ |
Jocelyn Bohr | a4ed3aa | 2015-07-30 10:44:16 -0700 | [diff] [blame] | 9 | |
| 10 | #include "tpm_generated.h" |
Vadim Bendebury | 1a1c333 | 2015-06-01 18:39:22 -0700 | [diff] [blame] | 11 | |
| 12 | typedef struct { |
Vadim Bendebury | f788ffb | 2015-06-05 12:57:27 -0700 | [diff] [blame] | 13 | TPMI_DH_OBJECT keyHandle; |
Vadim Bendebury | f788ffb | 2015-06-05 12:57:27 -0700 | [diff] [blame] | 14 | TPM2B_DIGEST digest; |
Jocelyn Bohr | a4ed3aa | 2015-07-30 10:44:16 -0700 | [diff] [blame] | 15 | TPMT_SIG_SCHEME inScheme; |
| 16 | TPMT_TK_HASHCHECK validation; |
Vadim Bendebury | 1a1c333 | 2015-06-01 18:39:22 -0700 | [diff] [blame] | 17 | } Sign_In; |
| 18 | |
Vadim Bendebury | 9de49d3 | 2019-01-15 09:36:48 -0800 | [diff] [blame] | 19 | typedef struct { |
| 20 | TPMT_SIGNATURE signature; |
| 21 | } Sign_Out; |
Vadim Bendebury | 1a1c333 | 2015-06-01 18:39:22 -0700 | [diff] [blame] | 22 | |
Jocelyn Bohr | a4ed3aa | 2015-07-30 10:44:16 -0700 | [diff] [blame] | 23 | // Executes Sign with request handles and parameters from |
| 24 | // |in| and computes response handles and parameters to |out|. |
| 25 | TPM_RC TPM2_Sign(Sign_In* in, Sign_Out* out); |
Vadim Bendebury | 1a1c333 | 2015-06-01 18:39:22 -0700 | [diff] [blame] | 26 | |
Vadim Bendebury | 776e236 | 2015-09-04 16:14:53 -0700 | [diff] [blame] | 27 | // Unmarshals any request parameters starting at |request_parameter_buffer|. |
Jocelyn Bohr | a4ed3aa | 2015-07-30 10:44:16 -0700 | [diff] [blame] | 28 | // Executes command. Marshals any response handles and parameters to the |
Vadim Bendebury | 776e236 | 2015-09-04 16:14:53 -0700 | [diff] [blame] | 29 | // global response buffer and computes |*response_handle_buffer_size| and |
| 30 | // |*response_parameter_buffer_size|. If |tag| == TPM_ST_SESSIONS, marshals |
Jocelyn Bohr | a4ed3aa | 2015-07-30 10:44:16 -0700 | [diff] [blame] | 31 | // parameter_size indicating the size of the parameter area. parameter_size |
| 32 | // field is located between the handle area and parameter area. |
| 33 | TPM_RC Exec_Sign(TPMI_ST_COMMAND_TAG tag, |
Vadim Bendebury | 776e236 | 2015-09-04 16:14:53 -0700 | [diff] [blame] | 34 | BYTE** request_parameter_buffer, |
| 35 | INT32* request_parameter_buffer_size, |
| 36 | TPM_HANDLE request_handles[], |
| 37 | UINT32* response_handle_buffer_size, |
| 38 | UINT32* response_parameter_buffer_size); |
Jocelyn Bohr | a4ed3aa | 2015-07-30 10:44:16 -0700 | [diff] [blame] | 39 | |
| 40 | #endif // TPM2_SIGN_FP_H |