blob: 3941028a4c682bc5835e17a6f6c1732a958b069f [file] [log] [blame]
Manuel Pégourié-Gonnard1a74a262014-06-24 15:51:32 +02001/*
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
Manuel Pégourié-Gonnard1a74a262014-06-24 15:51:32 +020019#define POLARSSL_CCM_C
20#define POLARSSL_CIPHER_C
21#define POLARSSL_CTR_DRBG_C
22#define POLARSSL_ENTROPY_C
23#define POLARSSL_MD_C
24#define POLARSSL_NET_C
Manuel Pégourié-Gonnard1a74a262014-06-24 15:51:32 +020025#define POLARSSL_SHA256_C
26#define POLARSSL_SSL_CLI_C
27#define POLARSSL_SSL_SRV_C
28#define POLARSSL_SSL_TLS_C
29
30#include "check_config.h"
31
32#endif /* POLARSSL_CONFIG_H */