Etienne Carriere | 7514117 | 2020-05-16 11:58:23 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: BSD-2-Clause */ |
Pascal Brand | c639ac8 | 2015-07-02 08:53:34 +0200 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2014, STMicroelectronics International N.V. |
| 4 | * All rights reserved. |
Pascal Brand | c639ac8 | 2015-07-02 08:53:34 +0200 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #ifndef AES_TAF_H |
| 8 | #define AES_TAF_H |
| 9 | |
| 10 | #include <tee_api.h> |
| 11 | |
| 12 | /* params[0] is input buffer and params[1] is output buffer */ |
| 13 | TEE_Result ta_entry_aes256ecb_encrypt(uint32_t param_types, |
| 14 | TEE_Param params[4]); |
| 15 | |
| 16 | /* params[0] is input buffer and params[1] is output buffer */ |
| 17 | TEE_Result ta_entry_aes256ecb_decrypt(uint32_t param_types, |
| 18 | TEE_Param params[4]); |
| 19 | |
| 20 | #endif |