blob: ef3996affaedf311d237bee9d71b2c96cc4057db [file] [log] [blame]
Vadim Bendebury25371542015-06-01 17:25:07 -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_DECRYPT_FP_H_
8#define __TPM2_RSA_DECRYPT_FP_H_
9
10typedef struct {
11 TPM_HANDLE keyHandle;
12 TPM2B_DATA cipherText;
13 TPM2B_DATA label;
14 TPMT_RSA_DECRYPT inScheme;
15} RSA_Decrypt_In;
16
17typedef struct {
18 TPM2B_DATA message;
19} RSA_Decrypt_Out;
20
21TPM_RC TPM2_RSA_Decrypt(
22 RSA_Decrypt_In *in, // IN: input parameter list
23 RSA_Decrypt_Out *out // OUT: output parameter list
24);
25
26#endif // __TPM2_RSA_DECRYPT_FP_H_