• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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_POLICYAUTHORIZE_FP_H_
8 #define TPM2_POLICYAUTHORIZE_FP_H_
9 
10 #include "tpm_generated.h"
11 
12 typedef struct {
13   TPMI_SH_POLICY policySession;
14   TPM2B_DIGEST approvedPolicy;
15   TPM2B_NONCE policyRef;
16   TPM2B_NAME keySign;
17   TPMT_TK_VERIFIED checkTicket;
18 } PolicyAuthorize_In;
19 
20 // Executes PolicyAuthorize with request handles and parameters from |in|.
21 TPM_RC TPM2_PolicyAuthorize(PolicyAuthorize_In* in);
22 
23 // Initializes handle fields in |target| from |request_handles|. Unmarshals
24 // parameter fields in |target| from |buffer|.
25 TPM_RC PolicyAuthorize_In_Unmarshal(PolicyAuthorize_In* target,
26                                     TPM_HANDLE request_handles[],
27                                     BYTE** buffer,
28                                     INT32* size);
29 
30 // Unmarshals any request parameters starting at |request_parameter_buffer|.
31 // Executes command. Marshals any response handles and parameters to the
32 // global response buffer and computes |*response_handle_buffer_size| and
33 // |*response_parameter_buffer_size|. If |tag| == TPM_ST_SESSIONS, marshals
34 // parameter_size indicating the size of the parameter area. parameter_size
35 // field is located between the handle area and parameter area.
36 TPM_RC Exec_PolicyAuthorize(TPMI_ST_COMMAND_TAG tag,
37                             BYTE** request_parameter_buffer,
38                             INT32* request_parameter_buffer_size,
39                             TPM_HANDLE request_handles[],
40                             UINT32* response_handle_buffer_size,
41                             UINT32* response_parameter_buffer_size);
42 
43 #endif  // TPM2_POLICYAUTHORIZE_FP_H
44