16799db69a
Signed-off-by: Dave Rodgman <dave.rodgman@arm.com>
22 lines
379 B
C
22 lines
379 B
C
/* des_alt.h with dummy types for MBEDTLS_DES_ALT */
|
|
/*
|
|
* Copyright The Mbed TLS Contributors
|
|
* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
|
|
*
|
|
*/
|
|
|
|
#ifndef DES_ALT_H
|
|
#define DES_ALT_H
|
|
|
|
typedef struct mbedtls_des_context {
|
|
int dummy;
|
|
}
|
|
mbedtls_des_context;
|
|
|
|
typedef struct mbedtls_des3_context {
|
|
int dummy;
|
|
}
|
|
mbedtls_des3_context;
|
|
|
|
|
|
#endif /* des_alt.h */
|