1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- #ifndef WOLFSSL_USER_SETTINGS_H
- #define WOLFSSL_USER_SETTINGS_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- #define OPENSSL_EXTRA_X509_SMALL
- #define USE_FAST_MATH
- #define TFM_TIMING_RESISTANT
- #define WC_RSA_BLINDING
- #define ECC_TIMING_RESISTANT
- #define HAVE_ECC
- #define HAVE_CURVE25519
- #define HAVE_AESGCM
- #define WOLFSSL_SHA384
- #define NO_DSA
- #define NO_RC4
- #define NO_MD4
- #define NO_MD5
- #define NO_DES3
- #ifdef __cplusplus
- }
- #endif
- #endif
|