![John Safranek](/assets/img/avatar_default.png)
1. Updated the iOS user_settings.h with the hardened settings. 2. Updated the iOS project file with Xcode's suggested settings. 3. Added an IDE project for building wolfSSL for Android using Visual Studio 2017.
21 lines
424 B
C
21 lines
424 B
C
/* Configuration */
|
|
#define IPHONE /* Needed for Xcode */
|
|
#define HAVE_HASHDRBG
|
|
#define HAVE_AESGCM
|
|
#define WOLFSSL_SHA512
|
|
#define WOLFSSL_SHA384
|
|
|
|
#ifdef HAVE_FIPS
|
|
#define NO_MD4
|
|
#define NO_HC128
|
|
#define NO_RABBIT
|
|
#define NO_DSA
|
|
#define NO_PWDBASED
|
|
#else
|
|
#define WC_RSA_BLINDING
|
|
#define USE_FAST_MATH
|
|
#define TFM_TIMING_RESISTANT
|
|
#define HAVE_ECC
|
|
#define ECC_TIMING_RESISTANT
|
|
#endif
|