1/*
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_NV_SPT_FP_H
8#define __TPM2_NV_SPT_FP_H
9
10TPM_RC NvReadAccessChecks(
11    TPM_HANDLE authHandle,  // IN: the handle that provided the authorization
12    TPM_HANDLE nvHandle     // IN: the handle of the NV index to be written
13    );
14TPM_RC NvWriteAccessChecks(
15    TPM_HANDLE authHandle,  // IN: the handle that provided the authorization
16    TPM_HANDLE nvHandle     // IN: the handle of the NV index to be written
17    );
18
19#endif  // __TPM2_NV_SPT_FP_H
20