Preliminary main mbed library for nexpaq development
libraries/net/https/axTLS/ssl/config.h@0:6c56fb4bc5f0, 2016-11-04 (annotated)
- Committer:
- nexpaq
- Date:
- Fri Nov 04 20:27:58 2016 +0000
- Revision:
- 0:6c56fb4bc5f0
Moving to library for sharing updates
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
nexpaq | 0:6c56fb4bc5f0 | 1 | #ifndef CONFIG_H |
nexpaq | 0:6c56fb4bc5f0 | 2 | #define CONFIG_H |
nexpaq | 0:6c56fb4bc5f0 | 3 | #define CONFIG_DEBUG |
nexpaq | 0:6c56fb4bc5f0 | 4 | #define CONFIG_STRIP_UNWANTED_SECTIONS 1 |
nexpaq | 0:6c56fb4bc5f0 | 5 | |
nexpaq | 0:6c56fb4bc5f0 | 6 | /* |
nexpaq | 0:6c56fb4bc5f0 | 7 | * BigInt Options |
nexpaq | 0:6c56fb4bc5f0 | 8 | */ |
nexpaq | 0:6c56fb4bc5f0 | 9 | #define CONFIG_BIGINT_BARRETT 1 |
nexpaq | 0:6c56fb4bc5f0 | 10 | #define CONFIG_BIGINT_CRT 1 |
nexpaq | 0:6c56fb4bc5f0 | 11 | #define CONFIG_INTEGER_32BIT 1 |
nexpaq | 0:6c56fb4bc5f0 | 12 | |
nexpaq | 0:6c56fb4bc5f0 | 13 | /* |
nexpaq | 0:6c56fb4bc5f0 | 14 | * SSL Library |
nexpaq | 0:6c56fb4bc5f0 | 15 | */ |
nexpaq | 0:6c56fb4bc5f0 | 16 | #define CONFIG_SSL_ENABLE_CLIENT 1 |
nexpaq | 0:6c56fb4bc5f0 | 17 | //#define CONFIG_SSL_SKELETON_MODE |
nexpaq | 0:6c56fb4bc5f0 | 18 | #define CONFIG_SSL_PROT_LOW 1 |
nexpaq | 0:6c56fb4bc5f0 | 19 | //#undef CONFIG_SSL_PROT_MEDIUM |
nexpaq | 0:6c56fb4bc5f0 | 20 | //#undef CONFIG_SSL_PROT_HIGH |
nexpaq | 0:6c56fb4bc5f0 | 21 | #define CONFIG_SSL_USE_DEFAULT_KEY 1 |
nexpaq | 0:6c56fb4bc5f0 | 22 | #define CONFIG_SSL_PRIVATE_KEY_LOCATION "" |
nexpaq | 0:6c56fb4bc5f0 | 23 | #define CONFIG_SSL_PRIVATE_KEY_PASSWORD "" |
nexpaq | 0:6c56fb4bc5f0 | 24 | #define CONFIG_SSL_X509_CERT_LOCATION "" |
nexpaq | 0:6c56fb4bc5f0 | 25 | #undef CONFIG_SSL_GENERATE_X509_CERT |
nexpaq | 0:6c56fb4bc5f0 | 26 | #define CONFIG_SSL_X509_COMMON_NAME "" |
nexpaq | 0:6c56fb4bc5f0 | 27 | #define CONFIG_SSL_X509_ORGANIZATION_NAME "" |
nexpaq | 0:6c56fb4bc5f0 | 28 | #define CONFIG_SSL_X509_ORGANIZATION_UNIT_NAME "" |
nexpaq | 0:6c56fb4bc5f0 | 29 | #undef CONFIG_SSL_ENABLE_V23_HANDSHAKE |
nexpaq | 0:6c56fb4bc5f0 | 30 | #undef CONFIG_SSL_HAS_PEM |
nexpaq | 0:6c56fb4bc5f0 | 31 | #undef CONFIG_SSL_USE_PKCS12 |
nexpaq | 0:6c56fb4bc5f0 | 32 | #define CONFIG_SSL_EXPIRY_TIME 24 |
nexpaq | 0:6c56fb4bc5f0 | 33 | #define CONFIG_X509_MAX_CA_CERTS 1 |
nexpaq | 0:6c56fb4bc5f0 | 34 | #define CONFIG_SSL_MAX_CERTS 1 |
nexpaq | 0:6c56fb4bc5f0 | 35 | #undef CONFIG_SSL_CTX_MUTEXING |
nexpaq | 0:6c56fb4bc5f0 | 36 | #undef CONFIG_USE_DEV_URANDOM |
nexpaq | 0:6c56fb4bc5f0 | 37 | #undef CONFIG_WIN32_USE_CRYPTO_LIB |
nexpaq | 0:6c56fb4bc5f0 | 38 | #undef CONFIG_OPENSSL_COMPATIBLE |
nexpaq | 0:6c56fb4bc5f0 | 39 | #undef CONFIG_PERFORMANCE_TESTING |
nexpaq | 0:6c56fb4bc5f0 | 40 | #undef CONFIG_SSL_TEST |
nexpaq | 0:6c56fb4bc5f0 | 41 | #undef CONFIG_AXTLSWRAP |
nexpaq | 0:6c56fb4bc5f0 | 42 | #undef CONFIG_AXHTTPD |
nexpaq | 0:6c56fb4bc5f0 | 43 | #undef CONFIG_HTTP_STATIC_BUILD |
nexpaq | 0:6c56fb4bc5f0 | 44 | #undef CONFIG_HTTP_HAS_CGI |
nexpaq | 0:6c56fb4bc5f0 | 45 | #define CONFIG_HTTP_CGI_EXTENSIONS "" |
nexpaq | 0:6c56fb4bc5f0 | 46 | #undef CONFIG_HTTP_ENABLE_LUA |
nexpaq | 0:6c56fb4bc5f0 | 47 | #define CONFIG_HTTP_LUA_PREFIX "" |
nexpaq | 0:6c56fb4bc5f0 | 48 | #undef CONFIG_HTTP_BUILD_LUA |
nexpaq | 0:6c56fb4bc5f0 | 49 | #define CONFIG_HTTP_CGI_LAUNCHER "" |
nexpaq | 0:6c56fb4bc5f0 | 50 | #undef CONFIG_HTTP_DIRECTORIES |
nexpaq | 0:6c56fb4bc5f0 | 51 | #undef CONFIG_HTTP_HAS_AUTHORIZATION |
nexpaq | 0:6c56fb4bc5f0 | 52 | #undef CONFIG_HTTP_HAS_IPV6 |
nexpaq | 0:6c56fb4bc5f0 | 53 | #undef CONFIG_HTTP_ENABLE_DIFFERENT_USER |
nexpaq | 0:6c56fb4bc5f0 | 54 | #define CONFIG_HTTP_USER "" |
nexpaq | 0:6c56fb4bc5f0 | 55 | #undef CONFIG_HTTP_VERBOSE |
nexpaq | 0:6c56fb4bc5f0 | 56 | #undef CONFIG_HTTP_IS_DAEMON |
nexpaq | 0:6c56fb4bc5f0 | 57 | #define CONFIG_SSL_CERT_VERIFICATION |
nexpaq | 0:6c56fb4bc5f0 | 58 | #define CONFIG_SSL_FULL_MODE |
nexpaq | 0:6c56fb4bc5f0 | 59 | |
nexpaq | 0:6c56fb4bc5f0 | 60 | #define MBED |
nexpaq | 0:6c56fb4bc5f0 | 61 | |
nexpaq | 0:6c56fb4bc5f0 | 62 | #endif |