123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- #ifndef WOLFSSL_USER_SETTINGS_H
- #define WOLFSSL_USER_SETTINGS_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- #undef SINGLE_THREADED
- #define SINGLE_THREADED
- #undef WOLFSSL_STATIC_MEMORY
- #define WOLFSSL_STATIC_MEMORY
- #undef WOLFSSL_NO_MALLOC
- #define WOLFSSL_NO_MALLOC
- #undef NO_FILESYSTEM
- #define NO_FILESYSTEM
- #define WOLFCRYPT_ONLY
- #define WC_16BIT_CPU
- #ifdef __BIG_ENDIAN__
- #define BIG_ENDIAN_ORDER
- #endif
- #define WOLFSSL_PUBLIC_MP
- #define WOLFSSL_SP_MATH
- #define WOLFSSL_SP_NO_MALLOC
- #define WOLFSSL_SP_SMALL
- #define WOLFSSL_SP_NO_DYN_STACK
- #define WOLFSSL_HAVE_SP_ECC
- #define SP_WORD_SIZE 32
- #define FP_MAX_BITS (2*256)
- #define USE_SLOW_SHA
- #define USE_SLOW_SHA256
- #define USE_SLOW_SHA512
- #define TFM_TIMING_RESISTANT
- #define ECC_TIMING_RESISTANT
- #define HAVE_ECC
- #define ECC_USER_CURVES
- #define NO_SIG_WRAPPER
- #define NO_AES
- #define NO_AES_CBC
- #define NO_DES3
- #define NO_DSA
- #define NO_RSA
- #define NO_DH
- #define NO_RC4
- #define NO_MD4
- #define NO_MD5
- #define NO_SHA
- #define NO_PWDBASED
- #define NO_PKCS12
- #define NO_PKCS8
- #define HAVE_CHACHA
- #define HAVE_POLY1305
- #define SIZEOF_LONG_LONG 8
- #define WOLFSSL_NO_PEM
- #define NO_PSK
- #ifndef DEBUG_WOLFSSL
- #define DEBUG_WOLFSSL
- #define NO_ERROR_STRINGS
- #endif
- #define CUSTOM_RAND_TYPE unsigned int
- extern unsigned int msp430_rnd(void);
- #undef CUSTOM_RAND_GENERATE
- #define CUSTOM_RAND_GENERATE msp430_rnd
- extern unsigned int msp430_time(long *x);
- #undef XTIME
- #define XTIME msp430_time
- #undef NO_CRYPT_TEST
- #define NO_CRYPT_TEST
- #undef NO_CRYPT_BENCHMARK
- #define NO_CRYPT_BENCHMARK
- #ifdef __cplusplus
- }
- #endif
- #endif
|