blob: b0c6f9b5c60feafe7be0f55ee95a4eb287d6ade7 [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 Bendeburyf0a510e2015-06-01 12:11:58 -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_PCR_SETAUTHPOLICY_FP_H_
8#define TPM2_PCR_SETAUTHPOLICY_FP_H_
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -07009
10#include "tpm_generated.h"
Vadim Bendeburyf0a510e2015-06-01 12:11:58 -070011
12typedef struct {
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070013 TPMI_RH_PLATFORM authHandle;
Vadim Bendeburyf788ffb2015-06-05 12:57:27 -070014 TPM2B_DIGEST authPolicy;
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070015 TPMI_ALG_HASH hashAlg;
16 TPMI_DH_PCR pcrNum;
Vadim Bendeburyf0a510e2015-06-01 12:11:58 -070017} PCR_SetAuthPolicy_In;
18
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070019// Executes PCR_SetAuthPolicy with request handles and parameters from |in|.
20TPM_RC TPM2_PCR_SetAuthPolicy(PCR_SetAuthPolicy_In* in);
Vadim Bendeburyf0a510e2015-06-01 12:11:58 -070021
Vadim Bendebury776e2362015-09-04 16:14:53 -070022// Initializes handle fields in |target| from |request_handles|. Unmarshals
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070023// parameter fields in |target| from |buffer|.
24TPM_RC PCR_SetAuthPolicy_In_Unmarshal(PCR_SetAuthPolicy_In* target,
Vadim Bendebury776e2362015-09-04 16:14:53 -070025 TPM_HANDLE request_handles[],
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070026 BYTE** buffer,
27 INT32* size);
28
Vadim Bendebury776e2362015-09-04 16:14:53 -070029// Unmarshals any request parameters starting at |request_parameter_buffer|.
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070030// Executes command. Marshals any response handles and parameters to the
Vadim Bendebury776e2362015-09-04 16:14:53 -070031// global response buffer and computes |*response_handle_buffer_size| and
32// |*response_parameter_buffer_size|. If |tag| == TPM_ST_SESSIONS, marshals
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070033// parameter_size indicating the size of the parameter area. parameter_size
34// field is located between the handle area and parameter area.
35TPM_RC Exec_PCR_SetAuthPolicy(TPMI_ST_COMMAND_TAG tag,
Vadim Bendebury776e2362015-09-04 16:14:53 -070036 BYTE** request_parameter_buffer,
37 INT32* request_parameter_buffer_size,
38 TPM_HANDLE request_handles[],
39 UINT32* response_handle_buffer_size,
40 UINT32* response_parameter_buffer_size);
Jocelyn Bohra4ed3aa2015-07-30 10:44:16 -070041
42#endif // TPM2_PCR_SETAUTHPOLICY_FP_H