1 /* SPDX-License-Identifier: BSD-2-Clause */
2 /* Copyright (c) 2020, Linaro Limited */
3 
4 #ifndef __MBEDTLS_AES_ALT_H
5 #define __MBEDTLS_AES_ALT_H
6 
7 typedef struct mbedtls_aes_context {
8 	uint32_t key[60];
9 	unsigned int round_count;
10 } mbedtls_aes_context;
11 
12 #endif /*__MBEDTLS_AES_ALT_H*/
13