Mbed TLS v3.6.4
aes_alt.h
Go to the documentation of this file.
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 }
14 
15 #if defined(MBEDTLS_CIPHER_MODE_XTS)
16 
17 typedef struct mbedtls_aes_xts_context {
18  int dummy;
20 #endif
21 
22 
23 #endif /* aes_alt.h */
struct mbedtls_aes_xts_context mbedtls_aes_xts_context
The AES XTS context-type definition.
struct mbedtls_aes_context mbedtls_aes_context
The AES context-type definition.
Definition: aes.h:63
The AES XTS context-type definition.
Definition: aes.h:87