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 | 30f6dee | 2015-05-29 22:51:10 -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 | |
| 7 | #ifndef TPM2_DUPLICATE_FP_H |
| 8 | #define TPM2_DUPLICATE_FP_H |
| 9 | |
| 10 | #include "tpm_generated.h" |
| 11 | |
Vadim Bendebury | 30f6dee | 2015-05-29 22:51:10 -0700 | [diff] [blame] | 12 | typedef struct { |
Vadim Bendebury | f788ffb | 2015-06-05 12:57:27 -0700 | [diff] [blame] | 13 | TPMI_DH_OBJECT objectHandle; |
| 14 | TPMI_DH_OBJECT newParentHandle; |
Vadim Bendebury | f788ffb | 2015-06-05 12:57:27 -0700 | [diff] [blame] | 15 | TPM2B_DATA encryptionKeyIn; |
Jocelyn Bohr | a4ed3aa | 2015-07-30 10:44:16 -0700 | [diff] [blame] | 16 | TPMT_SYM_DEF_OBJECT symmetricAlg; |
Vadim Bendebury | 30f6dee | 2015-05-29 22:51:10 -0700 | [diff] [blame] | 17 | } Duplicate_In; |
| 18 | |
| 19 | typedef struct { |
Jocelyn Bohr | a4ed3aa | 2015-07-30 10:44:16 -0700 | [diff] [blame] | 20 | TPM2B_DATA encryptionKeyOut; |
Vadim Bendebury | f788ffb | 2015-06-05 12:57:27 -0700 | [diff] [blame] | 21 | TPM2B_PRIVATE duplicate; |
| 22 | TPM2B_ENCRYPTED_SECRET outSymSeed; |
Vadim Bendebury | 30f6dee | 2015-05-29 22:51:10 -0700 | [diff] [blame] | 23 | } Duplicate_Out; |
| 24 | |
Jocelyn Bohr | a4ed3aa | 2015-07-30 10:44:16 -0700 | [diff] [blame] | 25 | // Executes Duplicate with request handles and parameters from |
| 26 | // |in| and computes response handles and parameters to |out|. |
| 27 | TPM_RC TPM2_Duplicate(Duplicate_In* in, Duplicate_Out* out); |
Vadim Bendebury | 30f6dee | 2015-05-29 22:51:10 -0700 | [diff] [blame] | 28 | |
Jocelyn Bohr | a4ed3aa | 2015-07-30 10:44:16 -0700 | [diff] [blame] | 29 | // Initializes handle fields in |target| from |req_handles|. Unmarshals |
| 30 | // parameter fields in |target| from |buffer|. |
| 31 | TPM_RC Duplicate_In_Unmarshal(Duplicate_In* target, |
| 32 | TPM_HANDLE req_handles[], |
| 33 | BYTE** buffer, |
| 34 | INT32* size); |
| 35 | |
| 36 | // Marshals response handles and parameters from |source| to |buffer|. Computes |
| 37 | // and marshals the size of the parameter area (parameter_size) if |tag| == |
| 38 | // TPM_ST_SESSIONS. Returns size of (parameter area + handle area) in bytes. |
| 39 | // Does not include parameter_size field. |
| 40 | UINT16 Duplicate_Out_Marshal(Duplicate_Out* source, |
| 41 | TPMI_ST_COMMAND_TAG tag, |
| 42 | BYTE** buffer, |
| 43 | INT32* size); |
| 44 | |
| 45 | // Unmarshals any request parameters starting at |req_parameter_buffer|. |
| 46 | // Executes command. Marshals any response handles and parameters to the |
| 47 | // global response buffer and computes |*res_handle_buffer_size| and |
| 48 | // |*res_parameter_buffer_size|. If |tag| == TPM_ST_SESSIONS, marshals |
| 49 | // parameter_size indicating the size of the parameter area. parameter_size |
| 50 | // field is located between the handle area and parameter area. |
| 51 | TPM_RC Exec_Duplicate(TPMI_ST_COMMAND_TAG tag, |
| 52 | BYTE** req_parameter_buffer, |
| 53 | INT32* req_parameter_buffer_size, |
| 54 | TPM_HANDLE req_handles[], |
| 55 | UINT32* res_handle_buffer_size, |
| 56 | UINT32* res_parameter_buffer_size); |
| 57 | |
| 58 | #endif // TPM2_DUPLICATE_FP_H |