58 lines
2.3 KiB
C
58 lines
2.3 KiB
C
// Copyright 2015 The Chromium OS Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
// THIS CODE IS GENERATED - DO NOT MODIFY!
|
|
|
|
#ifndef TPM2_REWRAP_FP_H_
|
|
#define TPM2_REWRAP_FP_H_
|
|
|
|
#include "tpm_generated.h"
|
|
|
|
typedef struct {
|
|
TPMI_DH_OBJECT oldParent;
|
|
TPMI_DH_OBJECT newParent;
|
|
TPM2B_PRIVATE inDuplicate;
|
|
TPM2B_NAME name;
|
|
TPM2B_ENCRYPTED_SECRET inSymSeed;
|
|
} Rewrap_In;
|
|
|
|
typedef struct {
|
|
TPM2B_PRIVATE outDuplicate;
|
|
TPM2B_ENCRYPTED_SECRET outSymSeed;
|
|
} Rewrap_Out;
|
|
|
|
// Executes Rewrap with request handles and parameters from
|
|
// |in| and computes response handles and parameters to |out|.
|
|
TPM_RC TPM2_Rewrap(Rewrap_In* in, Rewrap_Out* out);
|
|
|
|
// Initializes handle fields in |target| from |request_handles|. Unmarshals
|
|
// parameter fields in |target| from |buffer|.
|
|
TPM_RC Rewrap_In_Unmarshal(Rewrap_In* target,
|
|
TPM_HANDLE request_handles[],
|
|
BYTE** buffer,
|
|
INT32* size);
|
|
|
|
// Marshals response handles and parameters from |source| to |buffer|. Computes
|
|
// and marshals the size of the parameter area (parameter_size) if |tag| ==
|
|
// TPM_ST_SESSIONS. Returns size of (parameter area + handle area) in bytes.
|
|
// Return value does not include parameter_size field.
|
|
UINT16 Rewrap_Out_Marshal(Rewrap_Out* source,
|
|
TPMI_ST_COMMAND_TAG tag,
|
|
BYTE** buffer,
|
|
INT32* size);
|
|
|
|
// Unmarshals any request parameters starting at |request_parameter_buffer|.
|
|
// Executes command. Marshals any response handles and parameters to the
|
|
// global response buffer and computes |*response_handle_buffer_size| and
|
|
// |*response_parameter_buffer_size|. If |tag| == TPM_ST_SESSIONS, marshals
|
|
// parameter_size indicating the size of the parameter area. parameter_size
|
|
// field is located between the handle area and parameter area.
|
|
TPM_RC Exec_Rewrap(TPMI_ST_COMMAND_TAG tag,
|
|
BYTE** request_parameter_buffer,
|
|
INT32* request_parameter_buffer_size,
|
|
TPM_HANDLE request_handles[],
|
|
UINT32* response_handle_buffer_size,
|
|
UINT32* response_parameter_buffer_size);
|
|
|
|
#endif // TPM2_REWRAP_FP_H
|