blob: 40ed687be7591851a0dde26aa3dc20fcb9901060 [file] [log] [blame]
Vadim Bendebury524cf982015-06-01 10:32:05 -07001/*
2 * Copyright 2015 The Chromium OS Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
6
7#ifndef __TPM2_OBJECTCHANGEAUTH_FP_H_
8#define __TPM2_OBJECTCHANGEAUTH_FP_H_
9
10typedef struct {
11 TPMI_DH_OBJECT objectHandle;
12 TPMI_DH_OBJECT parentHandle;
13 TPM2B_AUTH newAuth;
14} ObjectChangeAuth_In;
15
16typedef struct {
17 TPM2B_PRIVATE outPrivate;
18} ObjectChangeAuth_Out;
19
20TPM_RC TPM2_ObjectChangeAuth(
21 ObjectChangeAuth_In *in, // IN: input parameter list
22 ObjectChangeAuth_Out *out // OUT: output parameter list
23);
24
25#endif // __TPM2_OBJECTCHANGEAUTH_FP_H_