user_settings.h 516 B

123456789101112131415161718192021222324
  1. #ifndef _VSARM_USER_SETTINGS_H_
  2. #define _VSARM_USER_SETTINGS_H_
  3. /* Enables blinding mode, to prevent timing attacks */
  4. #define WC_RSA_BLINDING
  5. #define WOLFSSL_SHA384
  6. #define WOLFSSL_SHA512
  7. #define NO_PSK
  8. #define HAVE_EXTENDED_MASTER
  9. #define HAVE_TLS_EXTENSIONS
  10. #define HAVE_SUPPORTED_CURVES
  11. #define HAVE_AESGCM
  12. #define USE_FAST_MATH
  13. #define TFM_TIMING_RESISTANT
  14. #define ECC_TIMING_RESISTANT
  15. #define NO_RC4
  16. #define NO_DSA
  17. #define NO_MD4
  18. #define HAVE_ECC
  19. #define HAVE_HASHDRBG
  20. #endif /* _VSARM_USER_SETTINGS_H_ */