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. 4 5 // THIS CODE IS GENERATED - DO NOT MODIFY! 6 7 #ifndef TPM2_CREATEPRIMARY_FP_H_ 8 #define TPM2_CREATEPRIMARY_FP_H_ 9 10 #include "tpm_generated.h" 11 12 typedef struct { 13 TPMI_RH_HIERARCHY primaryHandle; 14 TPM2B_SENSITIVE_CREATE inSensitive; 15 TPM2B_PUBLIC inPublic; 16 TPM2B_DATA outsideInfo; 17 TPML_PCR_SELECTION creationPCR; 18 } CreatePrimary_In; 19 20 typedef struct { 21 TPM_HANDLE objectHandle; 22 TPM2B_PUBLIC outPublic; 23 TPM2B_CREATION_DATA creationData; 24 TPM2B_DIGEST creationHash; 25 TPMT_TK_CREATION creationTicket; 26 TPM2B_NAME name; 27 } CreatePrimary_Out; 28 29 // Executes CreatePrimary with request handles and parameters from 30 // |in| and computes response handles and parameters to |out|. 31 TPM_RC TPM2_CreatePrimary(CreatePrimary_In* in, CreatePrimary_Out* out); 32 33 // Initializes handle fields in |target| from |request_handles|. Unmarshals 34 // parameter fields in |target| from |buffer|. 35 TPM_RC CreatePrimary_In_Unmarshal(CreatePrimary_In* target, 36 TPM_HANDLE request_handles[], 37 BYTE** buffer, 38 INT32* size); 39 40 // Marshals response handles and parameters from |source| to |buffer|. Computes 41 // and marshals the size of the parameter area (parameter_size) if |tag| == 42 // TPM_ST_SESSIONS. Returns size of (parameter area + handle area) in bytes. 43 // Return value does not include parameter_size field. 44 UINT16 CreatePrimary_Out_Marshal(CreatePrimary_Out* source, 45 TPMI_ST_COMMAND_TAG tag, 46 BYTE** buffer, 47 INT32* size); 48 49 // Unmarshals any request parameters starting at |request_parameter_buffer|. 50 // Executes command. Marshals any response handles and parameters to the 51 // global response buffer and computes |*response_handle_buffer_size| and 52 // |*response_parameter_buffer_size|. If |tag| == TPM_ST_SESSIONS, marshals 53 // parameter_size indicating the size of the parameter area. parameter_size 54 // field is located between the handle area and parameter area. 55 TPM_RC Exec_CreatePrimary(TPMI_ST_COMMAND_TAG tag, 56 BYTE** request_parameter_buffer, 57 INT32* request_parameter_buffer_size, 58 TPM_HANDLE request_handles[], 59 UINT32* response_handle_buffer_size, 60 UINT32* response_parameter_buffer_size); 61 62 #endif // TPM2_CREATEPRIMARY_FP_H 63