1 #ifndef _WIN_USER_SETTINGS_H_
2 #define _WIN_USER_SETTINGS_H_
3 
4 /* Verify this is Windows */
5 #ifndef _WIN32
6 #error This user_settings.h header is only designed for Windows
7 #endif
8 
9 #define WOLFSSL_WOLFSSH
10 #define WOLFCRYPT_ONLY
11 #define WOLFSSL_KEY_GEN
12 #define HAVE_ECC
13 #define HAVE_AESGCM
14 #define HAVE_HASHDRBG
15 #define WOLFSSL_AES_COUNTER
16 #define WOLFSSL_SHA384
17 #define WOLFSSL_SHA512
18 #define NO_PSK
19 #define NO_HC128
20 #define NO_RC4
21 #define NO_RABBIT
22 #define NO_DSA
23 #define NO_MD4
24 #define WC_RSA_BLINDING
25 #define WOLFSSL_PUBLIC_MP
26 #define SINGLE_THREADED
27 #define WC_NO_HARDEN
28 
29 #define WOLFSSH_TERM
30 
31 #endif /* _WIN_USER_SETTINGS_H_ */
32