blob: 705ad3fb5b2facfafec41fbfabf674f7c8dee4fd [file] [log] [blame]
Vadim Bendebury6edc84a2015-05-29 22:51:56 -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_ECC_PARAMETERS_FP_H
8#define __TPM2_ECC_PARAMETERS_FP_H
9
10typedef struct {
11 TPM_ECC_CURVE curveID;
12} ECC_Parameters_In;
13
14typedef struct {
15 TPMS_ALGORITHM_DETAIL_ECC parameters;
16} ECC_Parameters_Out;
17
18TPM_RC TPM2_ECC_Parameters(
19 ECC_Parameters_In *in, // IN: input parameter list
20 ECC_Parameters_Out *out // OUT: output parameter list
21 );
22
23#endif // __TPM2_ECC_PARAMETERS_FP_H