blob: 5965da53e46a37ddc279c552620cc15ab47f8bc2 [file] [log] [blame]
Vadim Bendebury9c193562015-06-01 17:31:24 -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_RSA_ENCRYPT_FP_H_
8#define __TPM2_RSA_ENCRYPT_FP_H_
9
10typedef struct {
11 TPMI_DH_OBJECT keyHandle;
12 TPM2B_DATA label;
13 TPM2B_DATA message;
14 TPMT_RSA_DECRYPT inScheme;
15} RSA_Encrypt_In;
16
17typedef struct {
18 TPM2B_DATA outData;
19} RSA_Encrypt_Out;
20
21TPM_RC TPM2_RSA_Encrypt(
22 RSA_Encrypt_In *in, // IN: input parameter list
23 RSA_Encrypt_Out *out // OUT: output parameter list
24);
25
26#endif // __TPM2_RSA_ENCRYPT_FP_H_