blob: dc47dd16c56eff113bb4aa910137120b57896a97 [file] [log] [blame]
Tom Rini0344c602024-10-08 13:56:50 -06001/* 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
10typedef struct mbedtls_aes_context {
11 int dummy;
12}
13mbedtls_aes_context;
14
15#if defined(MBEDTLS_CIPHER_MODE_XTS)
16
17typedef struct mbedtls_aes_xts_context {
18 int dummy;
19} mbedtls_aes_xts_context;
20#endif
21
22
23#endif /* aes_alt.h */