blob: 18785b5834d91bc7f231e8898adbe715cec2ff15 [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_POLICY_SPT_FP_H_
8#define __TPM2_POLICY_SPT_FP_H_
9
Vadim Bendebury5b7832d2015-06-01 13:19:03 -070010void PolicyContextUpdate(
11 TPM_CC commandCode, // IN: command code
12 TPM2B_NAME *name, // IN: name of entity
13 TPM2B_NONCE *ref, // IN: the reference data
14 TPM2B_DIGEST *cpHash, // IN: the cpHash (optional)
15 UINT64 policyTimeout,
16 SESSION *session // IN/OUT: policy session to be updated
17 );
Vadim Bendebury4be4cee2015-06-01 12:30:16 -070018
Vadim Bendebury5b7832d2015-06-01 13:19:03 -070019#endif // __TPM2_POLICY_SPT_FP_H_