2021-05-24 20:51:48 +00:00
|
|
|
/* aes_alt.h with dummy types for MBEDTLS_AES_ALT */
|
|
|
|
/*
|
|
|
|
* Copyright The Mbed TLS Contributors
|
2023-11-02 19:47:20 +00:00
|
|
|
* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
2021-05-24 20:51:48 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef AES_ALT_H
|
|
|
|
#define AES_ALT_H
|
|
|
|
|
2023-01-11 13:50:10 +00:00
|
|
|
typedef struct mbedtls_aes_context {
|
2021-05-24 20:51:48 +00:00
|
|
|
int dummy;
|
|
|
|
}
|
|
|
|
mbedtls_aes_context;
|
|
|
|
|
|
|
|
#if defined(MBEDTLS_CIPHER_MODE_XTS)
|
|
|
|
|
2023-01-11 13:50:10 +00:00
|
|
|
typedef struct mbedtls_aes_xts_context {
|
2021-05-24 20:51:48 +00:00
|
|
|
int dummy;
|
|
|
|
} mbedtls_aes_xts_context;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#endif /* aes_alt.h */
|