| /* |
| * Copyright (c) 2020-2023, Arm Limited and Contributors. All rights reserved. |
| * |
| * SPDX-License-Identifier: BSD-3-Clause |
| */ |
| |
| #ifndef CONFIG_CRYPTO_POSIX_H |
| #define CONFIG_CRYPTO_POSIX_H |
| |
| /* |
| * Mbed TLS configuration for using libmbedcrypto in |
| * a Posix environment (normal world demo and test applications). |
| */ |
| #define MBEDTLS_PSA_CRYPTO_CONFIG |
| #define MBEDTLS_NO_UDBL_DIVISION |
| #undef MBEDTLS_HAVE_TIME |
| #undef MBEDTLS_HAVE_TIME_DATE |
| #undef MBEDTLS_FS_IO |
| #undef MBEDTLS_SELF_TEST |
| #undef MBEDTLS_AESNI_C |
| #undef MBEDTLS_PADLOCK_C |
| #undef MBEDTLS_PLATFORM_C |
| #undef MBEDTLS_PSA_CRYPTO_STORAGE_C |
| #undef MBEDTLS_PSA_ITS_FILE_C |
| #undef MBEDTLS_TIMING_C |
| |
| #endif /* CONFIG_CRYPTO_POSIX_H */ |