1 /* des_alt.h with dummy types for MBEDTLS_DES_ALT */ 2 /* 3 * Copyright The Mbed TLS Contributors 4 * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later 5 * 6 */ 7 8 #ifndef DES_ALT_H 9 #define DES_ALT_H 10 11 typedef struct mbedtls_des_context { 12 int dummy; 13 } 14 mbedtls_des_context; 15 16 typedef struct mbedtls_des3_context { 17 int dummy; 18 } 19 mbedtls_des3_context; 20 21 22 #endif /* des_alt.h */ 23