26 lines
621 B
C
26 lines
621 B
C
#ifndef _WIN_USER_SETTINGS_H_
|
|
#define _WIN_USER_SETTINGS_H_
|
|
|
|
/* Verify this is Windows */
|
|
#ifndef _WIN32
|
|
#error This user_settings.h header is only designed for Windows
|
|
#endif
|
|
#define OPENSSL_EXTRA
|
|
#define WOLFSSL_RIPEMD
|
|
#define HAVE_TLS_EXTENSIONS
|
|
#define WOLFSSL_CERT_GEN
|
|
#define WOLFSSL_KEY_GEN
|
|
#define WOLFSSL_CERT_REQ
|
|
#define HAVE_AESGCM
|
|
#define WOLFSSL_SHA384
|
|
#define WOLFSSL_SHA512
|
|
#define WOLFSSL_SHA224
|
|
#define HAVE_BLAKE2
|
|
#define HAVE_BLAKE2B
|
|
#define HAVE_SUPPORTED_CURVES
|
|
#define HAVE_ECC
|
|
#define ECC_TIMING_RESISTANT
|
|
#define WC_RSA_BLINDING
|
|
#endif /* _WIN_USER_SETTINGS_H_ */
|
|
|