Manuel Pégourié-Gonnard | 1a74a26 | 2014-06-24 15:51:32 +0200 | [diff] [blame^] | 1 | /* |
| 2 | * Minimal configuration for TLS 1.2 with PSK and AES-CCM ciphersuites |
| 3 | * |
| 4 | * See README.txt for usage instructions. |
| 5 | */ |
| 6 | #ifndef POLARSSL_CONFIG_H |
| 7 | #define POLARSSL_CONFIG_H |
| 8 | |
| 9 | /* System support */ |
| 10 | #define POLARSSL_HAVE_IPV6 |
| 11 | #define POLARSSL_HAVE_TIME |
| 12 | |
| 13 | /* PolarSSL feature support */ |
| 14 | #define POLARSSL_KEY_EXCHANGE_PSK_ENABLED |
| 15 | #define POLARSSL_SSL_PROTO_TLS1_2 |
| 16 | |
| 17 | /* PolarSSL modules */ |
| 18 | #define POLARSSL_AES_C |
| 19 | #define POLARSSL_ASN1_PARSE_C |
| 20 | #define POLARSSL_ASN1_WRITE_C |
| 21 | #define POLARSSL_CCM_C |
| 22 | #define POLARSSL_CIPHER_C |
| 23 | #define POLARSSL_CTR_DRBG_C |
| 24 | #define POLARSSL_ENTROPY_C |
| 25 | #define POLARSSL_MD_C |
| 26 | #define POLARSSL_NET_C |
| 27 | #define POLARSSL_OID_C |
| 28 | #define POLARSSL_SHA256_C |
| 29 | #define POLARSSL_SSL_CLI_C |
| 30 | #define POLARSSL_SSL_SRV_C |
| 31 | #define POLARSSL_SSL_TLS_C |
| 32 | |
| 33 | #include "check_config.h" |
| 34 | |
| 35 | #endif /* POLARSSL_CONFIG_H */ |