blob: dc6fd28a46a31cb50a198de8f5ea4ea69bee6be1 [file] [log] [blame]
Vadim Bendebury4be4cee2015-06-01 12:30:16 -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_POLICYAUTHVALUE_FP_H_
8#define __TPM2_POLICYAUTHVALUE_FP_H_
9
10typedef struct {
11 TPM_HANDLE policySession;
12} PolicyAuthValue_In;
13
14TPM_RC TPM2_PolicyAuthValue(
15 PolicyAuthValue_In *in // IN: input parameter list
16);
17
18#endif // __TPM2_POLICYAUTHVALUE_FP_H_