123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- #ifndef WOLFSSL_USER_SETTINGS_H
- #define WOLFSSL_USER_SETTINGS_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- #define HAVE_FIPS
- #define HAVE_FIPS_VERSION 5
- #define HAVE_FIPS_VERSION_MINOR 3
- #define HAVE_HASHDRBG
- #define HAVE_THREAD_LS
- #define USE_FAST_MATH
- #define FP_MAX_BITS 16384
- #define SP_INT_BITS 8192
- #define WOLFSSL_PUBLIC_MP
- #define TFM_TIMING_RESISTANT
- #define ECC_TIMING_RESISTANT
- #define WC_RSA_BLINDING
- #define WC_RNG_SEED_CB
- #define WOLFSSL_VALIDATE_ECC_IMPORT
- #define WOLFSSL_VALIDATE_ECC_KEYGEN
- #define WOLFSSL_VALIDATE_FFC_IMPORT
- #define WOLFSSL_TLS13
- #define HAVE_TLS_EXTENSIONS
- #define HAVE_ENCRYPT_THEN_MAC
- #define HAVE_SUPPORTED_CURVES
- #define HAVE_EXTENDED_MASTER
- #define HAVE_ONE_TIME_AUTH
- #define HAVE_SECURE_RENEGOTIATION
- #define HAVE_SERVER_RENEGOTIATION_INFO
- #define HAVE_SESSION_TICKET
- #define WOLFSSL_USE_ALIGN
- #define WOLFSSL_BASE64_ENCODE
- #if 0
- #define HAVE_CRL
- #endif
- #define HAVE_EXT_CACHE
- #define WOLFSSL_VERIFY_CB_ALL_CERTS
- #define WOLFSSL_ALWAYS_VERIFY_CB
- #define WOLFSSL_DH_EXTRA
- #ifndef WOLFSSL_WOLFSSH
- #define WOLFSSL_WOLFSSH
- #endif
- #define OPENSSL_EXTRA
- #if 0
- #define OPENSSL_ALL
- #endif
- #undef NO_DH
- #define HAVE_FFDHE_Q
- #define HAVE_FFDHE_2048
- #define HAVE_FFDHE_3072
- #define HAVE_FFDHE_4096
- #define HAVE_FFDHE_6144
- #define HAVE_FFDHE_8192
- #define HAVE_DH_DEFAULT_PARAMS
- #define HAVE_PUBLIC_FFDHE
- #define HAVE_ECC
- #define TFM_ECC256
- #define ECC_SHAMIR
- #define HAVE_ECC_CDH
- #define ECC_USER_CURVES
- #define HAVE_ECC192
- #define HAVE_ECC224
- #define HAVE_ECC256
- #define HAVE_ECC384
- #define HAVE_ECC521
- #define WOLFSSL_ECDSA_SET_K
- #undef NO_RSA
- #define WC_RSA_PSS
- #define WOLFSSL_KEY_GEN
- #define WC_RSA_NO_PADDING
- #undef NO_AES
- #define WOLFSSL_AES_COUNTER
- #define HAVE_AESCCM
- #define HAVE_AES_ECB
- #define WOLFSSL_AES_COUNTER
- #define WOLFSSL_AES_DIRECT
- #define WOLFSSL_AES_OFB
- #define HAVE_AESGCM
- #define GCM_TABLE_4BIT
- #define WOLFSSL_CMAC
- #define HAVE_CHACHA
- #define HAVE_POLY1305
- #undef NO_SHA
- #undef NO_SHA256
- #define WOLFSSL_SHA224
- #define WOLFSSL_SHA512
- #define WOLFSSL_SHA384
- #define WOLFSSL_NO_SHAKE256
- #define WOLFSSL_NOSHA512_224
- #define WOLFSSL_NOSHA512_256
- #define WOLFSSL_SHA3
- #define HAVE_HKDF
- #define NO_OLD_TLS
- #define NO_PSK
- #define NO_RC4
- #define NO_MD4
- #define NO_MD5
- #define NO_DES3
- #define NO_DSA
- #define NO_RABBIT
- #define NO_HC128
- #define WOLFSSL_NO_SHAKE256
- #if 0
- #define DEBUG_WOLFSSL
- #else
-
- #endif
- #ifdef __cplusplus
- }
- #endif
- #endif
|