blob: b55504417c420fe834198233079c46e6d672edc1 [file] [log] [blame]
Vadim Bendebury7c8202b2015-06-01 15:37:46 -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_POLICYOR_FP_H_
8#define __TPM2_POLICYOR_FP_H_
9
10
11typedef struct {
12 TPM_HANDLE policySession;
13 TPML_DIGEST pHashList;
14} PolicyOR_In;
15
16TPM_RC TPM2_PolicyOR(
17 PolicyOR_In *in // IN: input parameter list
18);
19
20#endif // __TPM2_POLICYOR_FP_H_