blob: e9e16d91eeb5d9dae166c4c471afe9730687f432 [file] [log] [blame]
Vadim Bendeburyf32fac72015-06-01 11:54:32 -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_PCR_EXTEND_FP_H_
8#define __TPM2_PCR_EXTEND_FP_H_
9
10typedef struct {
11 TPM_RH pcrHandle;
12 TPML_DIGEST digests;
13} PCR_Extend_In;
14
15TPM_RC TPM2_PCR_Extend(
16 PCR_Extend_In *in // IN: input parameter list
17);
18
19#endif // __TPM2_PCR_EXTEND_FP_H_