/* wolfssl_user_settings.h * * Copyright (C) 2014-2024 wolfSSL Inc. * * This file is part of wolfSSH. * * wolfSSH is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * wolfSSH is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with wolfSSH. If not, see . */ #ifndef WOLFSSL_USER_SETTINGS_H #define WOLFSSL_USER_SETTINGS_H #ifdef __cplusplus extern "C" { #endif #undef WOLFSSL_ZEPHYR #define WOLFSSL_ZEPHYR #undef WOLFSSL_WOLFSSH #define WOLFSSL_WOLFSSH #undef TFM_TIMING_RESISTANT #define TFM_TIMING_RESISTANT #undef ECC_TIMING_RESISTANT #define ECC_TIMING_RESISTANT #undef WC_RSA_BLINDING #define WC_RSA_BLINDING #undef HAVE_AESGCM #define HAVE_AESGCM #undef WOLFSSL_SHA512 #define WOLFSSL_SHA512 #undef WOLFSSL_SHA384 #define WOLFSSL_SHA384 #undef NO_DSA #define NO_DSA #undef HAVE_ECC #define HAVE_ECC #undef TFM_ECC256 #define TFM_ECC256 #undef WOLFSSL_BASE64_ENCODE #define WOLFSSL_BASE64_ENCODE #undef NO_RC4 #define NO_RC4 #undef WOLFSSL_SHA224 #define WOLFSSL_SHA224 #undef WOLFSSL_SHA3 #define WOLFSSL_SHA3 #undef HAVE_POLY1305 #define HAVE_POLY1305 #undef HAVE_ONE_TIME_AUTH #define HAVE_ONE_TIME_AUTH #undef HAVE_CHACHA #define HAVE_CHACHA #undef HAVE_HASHDRBG #define HAVE_HASHDRBG #undef HAVE_TLS_EXTENSIONS #define HAVE_TLS_EXTENSIONS #undef HAVE_SUPPORTED_CURVES #define HAVE_SUPPORTED_CURVES #undef HAVE_EXTENDED_MASTER #define HAVE_EXTENDED_MASTER #undef NO_PSK #define NO_PSK #undef NO_MD4 #define NO_MD4 #undef NO_PWDBASED #define NO_PWDBASED #undef USE_FAST_MATH #define USE_FAST_MATH #undef WOLFSSL_NO_ASM #define WOLFSSL_NO_ASM #undef WOLFSSL_X86_BUILD #define WOLFSSL_X86_BUILD #undef WC_NO_ASYNC_THREADING #define WC_NO_ASYNC_THREADING #undef NO_DES3 #define NO_DES3 #undef WOLFSSL_STATIC_MEMORY #define WOLFSSL_STATIC_MEMORY #undef WOLFSSL_TLS13 #define WOLFSSL_TLS13 #undef HAVE_HKDF #define HAVE_HKDF #undef WC_RSA_PSS #define WC_RSA_PSS #undef HAVE_FFDHE_2048 #define HAVE_FFDHE_2048 #undef NO_FILESYSTEM #define NO_FILESYSTEM #ifdef __cplusplus } #endif #endif /* WOLFSSL_USER_SETTINGS_H */