1 /* aes_alt.h with dummy types for MBEDTLS_AES_ALT */
2 /*
3  *  Copyright The Mbed TLS Contributors
4  *  SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
5  */
6 
7 #ifndef AES_ALT_H
8 #define AES_ALT_H
9 
10 typedef struct mbedtls_aes_context {
11     int dummy;
12 }
13 mbedtls_aes_context;
14 
15 #if defined(MBEDTLS_CIPHER_MODE_XTS)
16 
17 typedef struct mbedtls_aes_xts_context {
18     int dummy;
19 } mbedtls_aes_xts_context;
20 #endif
21 
22 
23 #endif /* aes_alt.h */
24