12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- #ifndef USER_SETTINGS_H
- #define USER_SETTINGS_H
- #define WOLFSSL_NETBURNER
- #define WOLFSSL_MCF5441X
- #define NO_WRITEV
- #define WOLFSSL_NO_SOCK
- #define NO_WOLFSSL_DIR
- #define WOLFSSL_SMALL_STACK
- #define WOLFSSL_SHA512
- #define OPENSSL_EXTRA
- #define WC_RSA_NO_PADDING
- #define WC_RSA_PSS
- #define WOLFCRYPT_ONLY
- #define NO_FILESYSTEM
- #define SINGLE_THREADED
- #define NO_ASN_TIME
- #define NO_PWDBASED
- #define NO_RC4
- #define NO_DSA
- #define NO_DES3
- #define NO_DH
- #define NO_MD4
- #define USE_FAST_MATH
- #ifdef BUILD_B
- #define RSA_LOW_MEM
- #define USE_SLOW_SHA
- #define USE_SLOW_SHA256
- #define NO_ERROR_STRINGS
- #define USE_FAST_MATH
- #endif
- #ifdef BUILD_C
- #define WOLFSSL_HAVE_SP_RSA
- #define SP_WORD_SIZE 32
- #endif
- #if defined(USE_FAST_MATH)
- #define TFM_TIMING_RESISTANT
- #ifdef HAVE_ECC
- #define ECC_TIMING_RESISTANT
- #endif
- #endif
- #ifndef NO_RSA
-
- #define WC_RSA_BLINDING
- #endif
- #endif
|