blob: b366f73c99662929c33b20869d77025d2a1274e6 [file] [log] [blame]
Vadim Bendebury55567c82015-06-01 14:42:10 -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_POLICYLOCALITY_FP_H_
8#define __TPM2_POLICYLOCALITY_FP_H_
9
10typedef struct {
11 TPM_HANDLE policySession;
12 TPMA_LOCALITY locality;
13} PolicyLocality_In;
14
15TPM_RC TPM2_PolicyLocality(
16 PolicyLocality_In *in // IN: input parameter list
17);
18
19#endif // __TPM2_POLICYLOCALITY_FP_H_