1a8e1175bSopenharmony_ci/* aes_alt.h with dummy types for MBEDTLS_AES_ALT */
2a8e1175bSopenharmony_ci/*
3a8e1175bSopenharmony_ci *  Copyright The Mbed TLS Contributors
4a8e1175bSopenharmony_ci *  SPDX-License-Identifier: Apache-2.0
5a8e1175bSopenharmony_ci *
6a8e1175bSopenharmony_ci *  Licensed under the Apache License, Version 2.0 (the "License"); you may
7a8e1175bSopenharmony_ci *  not use this file except in compliance with the License.
8a8e1175bSopenharmony_ci *  You may obtain a copy of the License at
9a8e1175bSopenharmony_ci *
10a8e1175bSopenharmony_ci *  http://www.apache.org/licenses/LICENSE-2.0
11a8e1175bSopenharmony_ci *
12a8e1175bSopenharmony_ci *  Unless required by applicable law or agreed to in writing, software
13a8e1175bSopenharmony_ci *  distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
14a8e1175bSopenharmony_ci *  WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15a8e1175bSopenharmony_ci *  See the License for the specific language governing permissions and
16a8e1175bSopenharmony_ci *  limitations under the License.
17a8e1175bSopenharmony_ci */
18a8e1175bSopenharmony_ci
19a8e1175bSopenharmony_ci#ifndef AES_ALT_H
20a8e1175bSopenharmony_ci#define AES_ALT_H
21a8e1175bSopenharmony_ci
22a8e1175bSopenharmony_citypedef struct mbedtls_aes_context {
23a8e1175bSopenharmony_ci    int dummy;
24a8e1175bSopenharmony_ci}
25a8e1175bSopenharmony_cimbedtls_aes_context;
26a8e1175bSopenharmony_ci
27a8e1175bSopenharmony_ci#if defined(MBEDTLS_CIPHER_MODE_XTS)
28a8e1175bSopenharmony_ci
29a8e1175bSopenharmony_citypedef struct mbedtls_aes_xts_context {
30a8e1175bSopenharmony_ci    int dummy;
31a8e1175bSopenharmony_ci} mbedtls_aes_xts_context;
32a8e1175bSopenharmony_ci#endif
33a8e1175bSopenharmony_ci
34a8e1175bSopenharmony_ci
35a8e1175bSopenharmony_ci#endif /* aes_alt.h */
36