blob: e261e7a39e543beeb3ccddaa36b6f6ceadf46fd2 [file] [log] [blame]
Paul Bakker5121ce52009-01-03 21:22:43 +00001/**
2 * \file config.h
3 *
Paul Bakker37ca75d2011-01-06 12:28:03 +00004 * \brief Configuration options (set of defines)
5 *
Paul Bakker9bcf16c2013-06-24 19:31:17 +02006 * Copyright (C) 2006-2013, Brainspark B.V.
Paul Bakkerb96f1542010-07-18 20:36:00 +00007 *
8 * This file is part of PolarSSL (http://www.polarssl.org)
Paul Bakker84f12b72010-07-18 10:13:04 +00009 * Lead Maintainer: Paul Bakker <polarssl_maintainer at polarssl.org>
Paul Bakkerb96f1542010-07-18 20:36:00 +000010 *
Paul Bakker77b385e2009-07-28 17:23:11 +000011 * All rights reserved.
Paul Bakkere0ccd0a2009-01-04 16:27:10 +000012 *
Paul Bakkere0ccd0a2009-01-04 16:27:10 +000013 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License along
24 * with this program; if not, write to the Free Software Foundation, Inc.,
25 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 *
Paul Bakker5121ce52009-01-03 21:22:43 +000027 * This set of compile-time options may be used to enable
28 * or disable features selectively, and reduce the global
29 * memory footprint.
30 */
Paul Bakker40e46942009-01-03 21:51:57 +000031#ifndef POLARSSL_CONFIG_H
32#define POLARSSL_CONFIG_H
Paul Bakker5121ce52009-01-03 21:22:43 +000033
Paul Bakkercce9d772011-11-18 14:26:47 +000034#if defined(_MSC_VER) && !defined(_CRT_SECURE_NO_DEPRECATE)
Paul Bakker5121ce52009-01-03 21:22:43 +000035#define _CRT_SECURE_NO_DEPRECATE 1
36#endif
37
Paul Bakkerf3b86c12011-01-27 15:24:17 +000038/**
Paul Bakker0a62cd12011-01-21 11:00:08 +000039 * \name SECTION: System support
40 *
41 * This section sets system specific settings.
42 * \{
43 */
44
Paul Bakkerf3b86c12011-01-27 15:24:17 +000045/**
46 * \def POLARSSL_HAVE_INT8
Paul Bakker5121ce52009-01-03 21:22:43 +000047 *
Paul Bakkerf3b86c12011-01-27 15:24:17 +000048 * The system uses 8-bit wide native integers.
49 *
50 * Uncomment if native integers are 8-bit wide.
Paul Bakker5121ce52009-01-03 21:22:43 +000051 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +020052//#define POLARSSL_HAVE_INT8
Paul Bakker5121ce52009-01-03 21:22:43 +000053
Paul Bakkerf3b86c12011-01-27 15:24:17 +000054/**
55 * \def POLARSSL_HAVE_INT16
Paul Bakker5121ce52009-01-03 21:22:43 +000056 *
Paul Bakkerf3b86c12011-01-27 15:24:17 +000057 * The system uses 16-bit wide native integers.
58 *
59 * Uncomment if native integers are 16-bit wide.
Paul Bakker5121ce52009-01-03 21:22:43 +000060 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +020061//#define POLARSSL_HAVE_INT16
Paul Bakker5121ce52009-01-03 21:22:43 +000062
Paul Bakkerf3b86c12011-01-27 15:24:17 +000063/**
Paul Bakker62261d62012-10-02 12:19:31 +000064 * \def POLARSSL_HAVE_LONGLONG
Paul Bakker5121ce52009-01-03 21:22:43 +000065 *
Paul Bakker62261d62012-10-02 12:19:31 +000066 * The compiler supports the 'long long' type.
67 * (Only used on 32-bit platforms)
Paul Bakker5121ce52009-01-03 21:22:43 +000068 */
Paul Bakker62261d62012-10-02 12:19:31 +000069#define POLARSSL_HAVE_LONGLONG
Paul Bakker5121ce52009-01-03 21:22:43 +000070
Paul Bakkerf3b86c12011-01-27 15:24:17 +000071/**
72 * \def POLARSSL_HAVE_ASM
73 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +020074 * The compiler has support for asm().
Paul Bakker68041ec2009-04-19 21:17:55 +000075 *
76 * Requires support for asm() in compiler.
77 *
78 * Used in:
79 * library/timing.c
80 * library/padlock.c
81 * include/polarssl/bn_mul.h
82 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +020083 * Comment to disable the use of assembly code.
Paul Bakker5121ce52009-01-03 21:22:43 +000084 */
Paul Bakker40e46942009-01-03 21:51:57 +000085#define POLARSSL_HAVE_ASM
Paul Bakker5121ce52009-01-03 21:22:43 +000086
Paul Bakkerf3b86c12011-01-27 15:24:17 +000087/**
88 * \def POLARSSL_HAVE_SSE2
89 *
Paul Bakkere23c3152012-10-01 14:42:47 +000090 * CPU supports SSE2 instruction set.
Paul Bakkerf3b86c12011-01-27 15:24:17 +000091 *
Paul Bakker5121ce52009-01-03 21:22:43 +000092 * Uncomment if the CPU supports SSE2 (IA-32 specific).
Paul Bakker5121ce52009-01-03 21:22:43 +000093 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +020094//#define POLARSSL_HAVE_SSE2
Paul Bakkerfa9b1002013-07-03 15:31:03 +020095
96/**
97 * \def POLARSSL_HAVE_TIME
98 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +020099 * System has time.h and time() / localtime() / gettimeofday().
Paul Bakkerfa9b1002013-07-03 15:31:03 +0200100 *
101 * Comment if your system does not support time functions
102 */
103#define POLARSSL_HAVE_TIME
Manuel Pégourié-Gonnard10934de2013-12-13 12:54:09 +0100104
105/**
106 * \def POLARSSL_HAVE_IPV6
107 *
108 * System supports the basic socket interface for IPv6 (RFC 3493),
Manuel Pégourié-Gonnard767f02c2013-12-13 16:23:39 +0100109 * specifically getaddrinfo(), freeaddrinfo() and struct sockaddr_storage.
Manuel Pégourié-Gonnard10934de2013-12-13 12:54:09 +0100110 *
Manuel Pégourié-Gonnard13211352013-12-17 17:38:55 +0100111 * Note: on Windows/MingW, XP or higher is required.
112 *
Manuel Pégourié-Gonnard10934de2013-12-13 12:54:09 +0100113 * Comment if your system does not support the IPv6 socket interface
114 */
115#define POLARSSL_HAVE_IPV6
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200116/* \} name SECTION: System support */
Paul Bakker0a62cd12011-01-21 11:00:08 +0000117
Paul Bakkerf3b86c12011-01-27 15:24:17 +0000118/**
Paul Bakker0a62cd12011-01-21 11:00:08 +0000119 * \name SECTION: PolarSSL feature support
120 *
121 * This section sets support for features that are or are not needed
122 * within the modules that are enabled.
123 * \{
124 */
Paul Bakker5121ce52009-01-03 21:22:43 +0000125
Paul Bakkerf3b86c12011-01-27 15:24:17 +0000126/**
Paul Bakker90995b52013-06-24 19:20:35 +0200127 * \def POLARSSL_XXX_ALT
128 *
129 * Uncomment a macro to let PolarSSL use your alternate core implementation of
130 * a symmetric or hash algorithm (e.g. platform specific assembly optimized
131 * implementations). Keep in mind that the function prototypes should remain
132 * the same.
133 *
134 * Example: In case you uncomment POLARSSL_AES_ALT, PolarSSL will no longer
135 * provide the "struct aes_context" definition and omit the base function
136 * declarations and implementations. "aes_alt.h" will be included from
137 * "aes.h" to include the new function definitions.
138 *
139 * Uncomment a macro to enable alternate implementation for core algorithm
140 * functions
Paul Bakker90995b52013-06-24 19:20:35 +0200141 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200142//#define POLARSSL_AES_ALT
143//#define POLARSSL_ARC4_ALT
144//#define POLARSSL_BLOWFISH_ALT
145//#define POLARSSL_CAMELLIA_ALT
146//#define POLARSSL_DES_ALT
147//#define POLARSSL_XTEA_ALT
148//#define POLARSSL_MD2_ALT
149//#define POLARSSL_MD4_ALT
150//#define POLARSSL_MD5_ALT
Paul Bakker9f4c1622014-01-22 14:14:26 +0100151//#define POLARSSL_RIPEMD160_ALT
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200152//#define POLARSSL_SHA1_ALT
153//#define POLARSSL_SHA256_ALT
154//#define POLARSSL_SHA512_ALT
Paul Bakker90995b52013-06-24 19:20:35 +0200155
156/**
Paul Bakker15566e42011-04-24 21:19:15 +0000157 * \def POLARSSL_AES_ROM_TABLES
158 *
159 * Store the AES tables in ROM.
160 *
161 * Uncomment this macro to store the AES tables in ROM.
162 *
Paul Bakker15566e42011-04-24 21:19:15 +0000163 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200164//#define POLARSSL_AES_ROM_TABLES
Paul Bakker15566e42011-04-24 21:19:15 +0000165
166/**
Manuel Pégourié-Gonnardf7dc3782013-09-13 14:10:44 +0200167 * \def POLARSSL_CIPHER_MODE_CBC
168 *
169 * Enable Cipher Block Chaining mode (CBC) for symmetric ciphers.
170 */
171#define POLARSSL_CIPHER_MODE_CBC
172
173/**
Paul Bakkerb6ecaf52011-04-19 14:29:23 +0000174 * \def POLARSSL_CIPHER_MODE_CFB
175 *
176 * Enable Cipher Feedback mode (CFB) for symmetric ciphers.
177 */
178#define POLARSSL_CIPHER_MODE_CFB
179
180/**
181 * \def POLARSSL_CIPHER_MODE_CTR
182 *
183 * Enable Counter Block Cipher mode (CTR) for symmetric ciphers.
184 */
185#define POLARSSL_CIPHER_MODE_CTR
186
187/**
Paul Bakkerfab5c822012-02-06 16:45:10 +0000188 * \def POLARSSL_CIPHER_NULL_CIPHER
189 *
190 * Enable NULL cipher.
191 * Warning: Only do so when you know what you are doing. This allows for
192 * encryption or channels without any security!
193 *
194 * Requires POLARSSL_ENABLE_WEAK_CIPHERSUITES as well to enable
195 * the following ciphersuites:
Manuel Pégourié-Gonnard25781b22013-12-11 16:17:10 +0100196 * TLS_ECDH_ECDSA_WITH_NULL_SHA
197 * TLS_ECDH_RSA_WITH_NULL_SHA
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200198 * TLS_ECDHE_ECDSA_WITH_NULL_SHA
Paul Bakker41c83d32013-03-20 14:39:14 +0100199 * TLS_ECDHE_RSA_WITH_NULL_SHA
Manuel Pégourié-Gonnard225d6aa2013-10-11 19:07:56 +0200200 * TLS_ECDHE_PSK_WITH_NULL_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200201 * TLS_ECDHE_PSK_WITH_NULL_SHA256
202 * TLS_ECDHE_PSK_WITH_NULL_SHA
203 * TLS_DHE_PSK_WITH_NULL_SHA384
204 * TLS_DHE_PSK_WITH_NULL_SHA256
205 * TLS_DHE_PSK_WITH_NULL_SHA
206 * TLS_RSA_WITH_NULL_SHA256
207 * TLS_RSA_WITH_NULL_SHA
208 * TLS_RSA_WITH_NULL_MD5
209 * TLS_RSA_PSK_WITH_NULL_SHA384
210 * TLS_RSA_PSK_WITH_NULL_SHA256
211 * TLS_RSA_PSK_WITH_NULL_SHA
212 * TLS_PSK_WITH_NULL_SHA384
213 * TLS_PSK_WITH_NULL_SHA256
214 * TLS_PSK_WITH_NULL_SHA
Paul Bakkerfab5c822012-02-06 16:45:10 +0000215 *
216 * Uncomment this macro to enable the NULL cipher and ciphersuites
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200217#define POLARSSL_CIPHER_NULL_CIPHER
Paul Bakkerfab5c822012-02-06 16:45:10 +0000218 */
219
220/**
Paul Bakker48e93c82013-08-14 12:21:18 +0200221 * \def POLARSSL_CIPHER_PADDING_XXX
222 *
223 * Uncomment or comment macros to add support for specific padding modes
224 * in the cipher layer with cipher modes that support padding (e.g. CBC)
225 *
226 * If you disable all padding modes, only full blocks can be used with CBC.
227 *
228 * Enable padding modes in the cipher layer.
229 */
230#define POLARSSL_CIPHER_PADDING_PKCS7
231#define POLARSSL_CIPHER_PADDING_ONE_AND_ZEROS
232#define POLARSSL_CIPHER_PADDING_ZEROS_AND_LEN
233#define POLARSSL_CIPHER_PADDING_ZEROS
234
235/**
Paul Bakkerfab5c822012-02-06 16:45:10 +0000236 * \def POLARSSL_ENABLE_WEAK_CIPHERSUITES
237 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200238 * Enable weak ciphersuites in SSL / TLS.
Paul Bakkerfab5c822012-02-06 16:45:10 +0000239 * Warning: Only do so when you know what you are doing. This allows for
Paul Bakker9a736322012-11-14 12:39:52 +0000240 * channels with virtually no security at all!
Paul Bakkerfab5c822012-02-06 16:45:10 +0000241 *
242 * This enables the following ciphersuites:
Paul Bakker645ce3a2012-10-31 12:32:41 +0000243 * TLS_RSA_WITH_DES_CBC_SHA
244 * TLS_DHE_RSA_WITH_DES_CBC_SHA
Paul Bakkerfab5c822012-02-06 16:45:10 +0000245 *
246 * Uncomment this macro to enable weak ciphersuites
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200247#define POLARSSL_ENABLE_WEAK_CIPHERSUITES
Paul Bakkerfab5c822012-02-06 16:45:10 +0000248 */
249
250/**
Paul Bakker5dc6b5f2013-06-29 23:26:34 +0200251 * \def POLARSSL_ECP_XXXX_ENABLED
252 *
253 * Enables specific curves within the Elliptic Curve module.
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200254 * By default all supported curves are enabled.
Paul Bakker5dc6b5f2013-06-29 23:26:34 +0200255 *
256 * Comment macros to disable the curve and functions for it
257 */
258#define POLARSSL_ECP_DP_SECP192R1_ENABLED
259#define POLARSSL_ECP_DP_SECP224R1_ENABLED
260#define POLARSSL_ECP_DP_SECP256R1_ENABLED
261#define POLARSSL_ECP_DP_SECP384R1_ENABLED
262#define POLARSSL_ECP_DP_SECP521R1_ENABLED
Manuel Pégourié-Gonnardea499a72014-01-11 15:58:47 +0100263#define POLARSSL_ECP_DP_SECP192K1_ENABLED
Manuel Pégourié-Gonnard18e3ec92014-01-11 15:22:07 +0100264#define POLARSSL_ECP_DP_SECP224K1_ENABLED
Manuel Pégourié-Gonnardf51c8fc2014-01-10 18:17:18 +0100265#define POLARSSL_ECP_DP_SECP256K1_ENABLED
Manuel Pégourié-Gonnard8195c1a2013-10-07 19:40:41 +0200266#define POLARSSL_ECP_DP_BP256R1_ENABLED
267#define POLARSSL_ECP_DP_BP384R1_ENABLED
268#define POLARSSL_ECP_DP_BP512R1_ENABLED
Manuel Pégourié-Gonnard66153662013-12-03 14:12:26 +0100269//#define POLARSSL_ECP_DP_M221_ENABLED // Not implemented yet!
270#define POLARSSL_ECP_DP_M255_ENABLED
271//#define POLARSSL_ECP_DP_M383_ENABLED // Not implemented yet!
272//#define POLARSSL_ECP_DP_M511_ENABLED // Not implemented yet!
Paul Bakker5dc6b5f2013-06-29 23:26:34 +0200273
274/**
Manuel Pégourié-Gonnardc04c5302013-10-23 16:11:52 +0200275 * \def POLARSSL_ECP_NIST_OPTIM
276 *
277 * Enable specific 'modulo p' routines for each NIST prime.
278 * Depending on the prime and architecture, makes operations 4 to 8 times
279 * faster on the corresponding curve.
280 *
281 * Comment this macro to disable NIST curves optimisation.
282 */
283#define POLARSSL_ECP_NIST_OPTIM
284
285/**
Paul Bakkerd4a56ec2013-04-16 18:05:29 +0200286 * \def POLARSSL_KEY_EXCHANGE_PSK_ENABLED
287 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200288 * Enable the PSK based ciphersuite modes in SSL / TLS.
Paul Bakkerd4a56ec2013-04-16 18:05:29 +0200289 *
Paul Bakkere07f41d2013-04-19 09:08:57 +0200290 * This enables the following ciphersuites (if other requisites are
291 * enabled as well):
Paul Bakker45bda902013-04-19 22:28:21 +0200292 * TLS_PSK_WITH_AES_256_GCM_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200293 * TLS_PSK_WITH_AES_256_CBC_SHA384
294 * TLS_PSK_WITH_AES_256_CBC_SHA
295 * TLS_PSK_WITH_CAMELLIA_256_GCM_SHA384
296 * TLS_PSK_WITH_CAMELLIA_256_CBC_SHA384
297 * TLS_PSK_WITH_AES_128_GCM_SHA256
298 * TLS_PSK_WITH_AES_128_CBC_SHA256
299 * TLS_PSK_WITH_AES_128_CBC_SHA
300 * TLS_PSK_WITH_CAMELLIA_128_GCM_SHA256
301 * TLS_PSK_WITH_CAMELLIA_128_CBC_SHA256
302 * TLS_PSK_WITH_3DES_EDE_CBC_SHA
303 * TLS_PSK_WITH_RC4_128_SHA
Paul Bakkerd4a56ec2013-04-16 18:05:29 +0200304 */
305#define POLARSSL_KEY_EXCHANGE_PSK_ENABLED
306
307/**
Paul Bakkere07f41d2013-04-19 09:08:57 +0200308 * \def POLARSSL_KEY_EXCHANGE_DHE_PSK_ENABLED
309 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200310 * Enable the DHE-PSK based ciphersuite modes in SSL / TLS.
Paul Bakkere07f41d2013-04-19 09:08:57 +0200311 *
312 * Requires: POLARSSL_DHM_C
313 *
314 * This enables the following ciphersuites (if other requisites are
315 * enabled as well):
Paul Bakker45bda902013-04-19 22:28:21 +0200316 * TLS_DHE_PSK_WITH_AES_256_GCM_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200317 * TLS_DHE_PSK_WITH_AES_256_CBC_SHA384
318 * TLS_DHE_PSK_WITH_AES_256_CBC_SHA
319 * TLS_DHE_PSK_WITH_CAMELLIA_256_GCM_SHA384
320 * TLS_DHE_PSK_WITH_CAMELLIA_256_CBC_SHA384
321 * TLS_DHE_PSK_WITH_AES_128_GCM_SHA256
322 * TLS_DHE_PSK_WITH_AES_128_CBC_SHA256
323 * TLS_DHE_PSK_WITH_AES_128_CBC_SHA
324 * TLS_DHE_PSK_WITH_CAMELLIA_128_GCM_SHA256
325 * TLS_DHE_PSK_WITH_CAMELLIA_128_CBC_SHA256
326 * TLS_DHE_PSK_WITH_3DES_EDE_CBC_SHA
327 * TLS_DHE_PSK_WITH_RC4_128_SHA
Paul Bakkere07f41d2013-04-19 09:08:57 +0200328 */
Paul Bakker48f7a5d2013-04-19 14:30:58 +0200329#define POLARSSL_KEY_EXCHANGE_DHE_PSK_ENABLED
Paul Bakkere07f41d2013-04-19 09:08:57 +0200330
331/**
Manuel Pégourié-Gonnard3ce3bbd2013-10-11 16:53:50 +0200332 * \def POLARSSL_KEY_EXCHANGE_ECDHE_PSK_ENABLED
333 *
334 * Enable the ECDHE-PSK based ciphersuite modes in SSL / TLS.
335 *
336 * Requires: POLARSSL_ECDH_C
337 *
338 * This enables the following ciphersuites (if other requisites are
339 * enabled as well):
Manuel Pégourié-Gonnard225d6aa2013-10-11 19:07:56 +0200340 * TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200341 * TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA
Manuel Pégourié-Gonnard225d6aa2013-10-11 19:07:56 +0200342 * TLS_ECDHE_PSK_WITH_CAMELLIA_256_CBC_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200343 * TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA256
344 * TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA
345 * TLS_ECDHE_PSK_WITH_CAMELLIA_128_CBC_SHA256
346 * TLS_ECDHE_PSK_WITH_3DES_EDE_CBC_SHA
347 * TLS_ECDHE_PSK_WITH_RC4_128_SHA
Manuel Pégourié-Gonnard3ce3bbd2013-10-11 16:53:50 +0200348 */
349#define POLARSSL_KEY_EXCHANGE_ECDHE_PSK_ENABLED
350
351/**
Paul Bakkere07f41d2013-04-19 09:08:57 +0200352 * \def POLARSSL_KEY_EXCHANGE_RSA_PSK_ENABLED
353 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200354 * Enable the RSA-PSK based ciphersuite modes in SSL / TLS.
Manuel Pégourié-Gonnard0fae60b2013-10-14 17:39:48 +0200355 *
Manuel Pégourié-Gonnard1032c1d2013-09-18 17:18:34 +0200356 * Requires: POLARSSL_RSA_C, POLARSSL_PKCS1_V15,
Manuel Pégourié-Gonnardcbf3ef32013-09-23 12:20:02 +0200357 * POLARSSL_X509_CRT_PARSE_C
Paul Bakkere07f41d2013-04-19 09:08:57 +0200358 *
359 * This enables the following ciphersuites (if other requisites are
360 * enabled as well):
Paul Bakker45bda902013-04-19 22:28:21 +0200361 * TLS_RSA_PSK_WITH_AES_256_GCM_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200362 * TLS_RSA_PSK_WITH_AES_256_CBC_SHA384
363 * TLS_RSA_PSK_WITH_AES_256_CBC_SHA
364 * TLS_RSA_PSK_WITH_CAMELLIA_256_GCM_SHA384
365 * TLS_RSA_PSK_WITH_CAMELLIA_256_CBC_SHA384
366 * TLS_RSA_PSK_WITH_AES_128_GCM_SHA256
367 * TLS_RSA_PSK_WITH_AES_128_CBC_SHA256
368 * TLS_RSA_PSK_WITH_AES_128_CBC_SHA
369 * TLS_RSA_PSK_WITH_CAMELLIA_128_GCM_SHA256
370 * TLS_RSA_PSK_WITH_CAMELLIA_128_CBC_SHA256
371 * TLS_RSA_PSK_WITH_3DES_EDE_CBC_SHA
372 * TLS_RSA_PSK_WITH_RC4_128_SHA
Paul Bakkere07f41d2013-04-19 09:08:57 +0200373 */
Manuel Pégourié-Gonnard0fae60b2013-10-14 17:39:48 +0200374#define POLARSSL_KEY_EXCHANGE_RSA_PSK_ENABLED
Paul Bakkere07f41d2013-04-19 09:08:57 +0200375
376/**
377 * \def POLARSSL_KEY_EXCHANGE_RSA_ENABLED
378 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200379 * Enable the RSA-only based ciphersuite modes in SSL / TLS.
Paul Bakkere07f41d2013-04-19 09:08:57 +0200380 *
Manuel Pégourié-Gonnard1032c1d2013-09-18 17:18:34 +0200381 * Requires: POLARSSL_RSA_C, POLARSSL_PKCS1_V15,
Manuel Pégourié-Gonnardcbf3ef32013-09-23 12:20:02 +0200382 * POLARSSL_X509_CRT_PARSE_C
Paul Bakkere07f41d2013-04-19 09:08:57 +0200383 *
384 * This enables the following ciphersuites (if other requisites are
385 * enabled as well):
Paul Bakkere07f41d2013-04-19 09:08:57 +0200386 * TLS_RSA_WITH_AES_256_GCM_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200387 * TLS_RSA_WITH_AES_256_CBC_SHA256
388 * TLS_RSA_WITH_AES_256_CBC_SHA
389 * TLS_RSA_WITH_CAMELLIA_256_GCM_SHA384
Paul Bakkere07f41d2013-04-19 09:08:57 +0200390 * TLS_RSA_WITH_CAMELLIA_256_CBC_SHA256
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200391 * TLS_RSA_WITH_CAMELLIA_256_CBC_SHA
392 * TLS_RSA_WITH_AES_128_GCM_SHA256
393 * TLS_RSA_WITH_AES_128_CBC_SHA256
394 * TLS_RSA_WITH_AES_128_CBC_SHA
395 * TLS_RSA_WITH_CAMELLIA_128_GCM_SHA256
396 * TLS_RSA_WITH_CAMELLIA_128_CBC_SHA256
397 * TLS_RSA_WITH_CAMELLIA_128_CBC_SHA
Paul Bakkere07f41d2013-04-19 09:08:57 +0200398 * TLS_RSA_WITH_3DES_EDE_CBC_SHA
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200399 * TLS_RSA_WITH_RC4_128_SHA
400 * TLS_RSA_WITH_RC4_128_MD5
Paul Bakkere07f41d2013-04-19 09:08:57 +0200401 */
402#define POLARSSL_KEY_EXCHANGE_RSA_ENABLED
403
404/**
405 * \def POLARSSL_KEY_EXCHANGE_DHE_RSA_ENABLED
406 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200407 * Enable the DHE-RSA based ciphersuite modes in SSL / TLS.
Paul Bakkere07f41d2013-04-19 09:08:57 +0200408 *
Manuel Pégourié-Gonnard1032c1d2013-09-18 17:18:34 +0200409 * Requires: POLARSSL_DHM_C, POLARSSL_RSA_C, POLARSSL_PKCS1_V15,
Manuel Pégourié-Gonnardcbf3ef32013-09-23 12:20:02 +0200410 * POLARSSL_X509_CRT_PARSE_C
Paul Bakkere07f41d2013-04-19 09:08:57 +0200411 *
412 * This enables the following ciphersuites (if other requisites are
413 * enabled as well):
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200414 * TLS_DHE_RSA_WITH_AES_256_GCM_SHA384
Paul Bakkere07f41d2013-04-19 09:08:57 +0200415 * TLS_DHE_RSA_WITH_AES_256_CBC_SHA256
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200416 * TLS_DHE_RSA_WITH_AES_256_CBC_SHA
417 * TLS_DHE_RSA_WITH_CAMELLIA_256_GCM_SHA384
Paul Bakkere07f41d2013-04-19 09:08:57 +0200418 * TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA256
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200419 * TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA
420 * TLS_DHE_RSA_WITH_AES_128_GCM_SHA256
421 * TLS_DHE_RSA_WITH_AES_128_CBC_SHA256
422 * TLS_DHE_RSA_WITH_AES_128_CBC_SHA
423 * TLS_DHE_RSA_WITH_CAMELLIA_128_GCM_SHA256
424 * TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA256
425 * TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA
Paul Bakkere07f41d2013-04-19 09:08:57 +0200426 * TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA
427 */
428#define POLARSSL_KEY_EXCHANGE_DHE_RSA_ENABLED
429
430/**
431 * \def POLARSSL_KEY_EXCHANGE_ECDHE_RSA_ENABLED
432 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200433 * Enable the ECDHE-RSA based ciphersuite modes in SSL / TLS.
Paul Bakkere07f41d2013-04-19 09:08:57 +0200434 *
Manuel Pégourié-Gonnard1032c1d2013-09-18 17:18:34 +0200435 * Requires: POLARSSL_ECDH_C, POLARSSL_RSA_C, POLARSSL_PKCS1_V15,
Manuel Pégourié-Gonnardcbf3ef32013-09-23 12:20:02 +0200436 * POLARSSL_X509_CRT_PARSE_C
Paul Bakkere07f41d2013-04-19 09:08:57 +0200437 *
438 * This enables the following ciphersuites (if other requisites are
439 * enabled as well):
Paul Bakkere07f41d2013-04-19 09:08:57 +0200440 * TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200441 * TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384
442 * TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA
443 * TLS_ECDHE_RSA_WITH_CAMELLIA_256_GCM_SHA384
Paul Bakkere07f41d2013-04-19 09:08:57 +0200444 * TLS_ECDHE_RSA_WITH_CAMELLIA_256_CBC_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200445 * TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
446 * TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256
447 * TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA
448 * TLS_ECDHE_RSA_WITH_CAMELLIA_128_GCM_SHA256
449 * TLS_ECDHE_RSA_WITH_CAMELLIA_128_CBC_SHA256
450 * TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA
451 * TLS_ECDHE_RSA_WITH_RC4_128_SHA
Paul Bakkere07f41d2013-04-19 09:08:57 +0200452 */
453#define POLARSSL_KEY_EXCHANGE_ECDHE_RSA_ENABLED
454
455/**
Manuel Pégourié-Gonnard32ea60a2013-08-17 17:39:04 +0200456 * \def POLARSSL_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED
457 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200458 * Enable the ECDHE-ECDSA based ciphersuite modes in SSL / TLS.
Manuel Pégourié-Gonnard32ea60a2013-08-17 17:39:04 +0200459 *
Manuel Pégourié-Gonnard1032c1d2013-09-18 17:18:34 +0200460 * Requires: POLARSSL_ECDH_C, POLARSSL_ECDSA_C, POLARSSL_X509_CRT_PARSE_C,
Manuel Pégourié-Gonnard32ea60a2013-08-17 17:39:04 +0200461 *
462 * This enables the following ciphersuites (if other requisites are
463 * enabled as well):
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200464 * TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384
465 * TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384
466 * TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA
467 * TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_GCM_SHA384
468 * TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_CBC_SHA384
469 * TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
470 * TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256
471 * TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA
472 * TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_GCM_SHA256
473 * TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_CBC_SHA256
474 * TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA
475 * TLS_ECDHE_ECDSA_WITH_RC4_128_SHA
Manuel Pégourié-Gonnard32ea60a2013-08-17 17:39:04 +0200476 */
477#define POLARSSL_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED
478
479/**
Manuel Pégourié-Gonnard25781b22013-12-11 16:17:10 +0100480 * \def POLARSSL_KEY_EXCHANGE_ECDH_ECDSA_ENABLED
481 *
482 * Enable the ECDH-ECDSA based ciphersuite modes in SSL / TLS.
483 *
484 * Requires: POLARSSL_ECDH_C, POLARSSL_X509_CRT_PARSE_C
485 *
486 * This enables the following ciphersuites (if other requisites are
487 * enabled as well):
488 * TLS_ECDH_ECDSA_WITH_RC4_128_SHA
489 * TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA
490 * TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA
491 * TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA
492 * TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256
493 * TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384
494 * TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256
495 * TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384
496 * TLS_ECDH_ECDSA_WITH_CAMELLIA_128_CBC_SHA256
497 * TLS_ECDH_ECDSA_WITH_CAMELLIA_256_CBC_SHA384
498 * TLS_ECDH_ECDSA_WITH_CAMELLIA_128_GCM_SHA256
499 * TLS_ECDH_ECDSA_WITH_CAMELLIA_256_GCM_SHA384
500 */
501#define POLARSSL_KEY_EXCHANGE_ECDH_ECDSA_ENABLED
502
503/**
504 * \def POLARSSL_KEY_EXCHANGE_ECDH_RSA_ENABLED
505 *
506 * Enable the ECDH-RSA based ciphersuite modes in SSL / TLS.
507 *
508 * Requires: POLARSSL_ECDH_C, POLARSSL_X509_CRT_PARSE_C
509 *
510 * This enables the following ciphersuites (if other requisites are
511 * enabled as well):
512 * TLS_ECDH_RSA_WITH_RC4_128_SHA
513 * TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA
514 * TLS_ECDH_RSA_WITH_AES_128_CBC_SHA
515 * TLS_ECDH_RSA_WITH_AES_256_CBC_SHA
516 * TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256
517 * TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384
518 * TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256
519 * TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384
520 * TLS_ECDH_RSA_WITH_CAMELLIA_128_CBC_SHA256
521 * TLS_ECDH_RSA_WITH_CAMELLIA_256_CBC_SHA384
522 * TLS_ECDH_RSA_WITH_CAMELLIA_128_GCM_SHA256
523 * TLS_ECDH_RSA_WITH_CAMELLIA_256_GCM_SHA384
524 */
525#define POLARSSL_KEY_EXCHANGE_ECDH_RSA_ENABLED
526
527/**
Paul Bakkere2ab84f2013-06-29 18:24:32 +0200528 * \def POLARSSL_ERROR_STRERROR_BC
529 *
530 * Make available the backward compatible error_strerror() next to the
531 * current polarssl_strerror().
532 *
533 * Disable if you run into name conflicts and want to really remove the
534 * error_strerror()
535 */
536#define POLARSSL_ERROR_STRERROR_BC
537
538/**
Paul Bakker8fe40dc2013-02-02 12:43:08 +0100539 * \def POLARSSL_ERROR_STRERROR_DUMMY
540 *
Paul Bakkereba3ccf2013-09-09 15:55:12 +0200541 * Enable a dummy error function to make use of polarssl_strerror() in
Paul Bakker8fe40dc2013-02-02 12:43:08 +0100542 * third party libraries easier.
543 *
544 * Disable if you run into name conflicts and want to really remove the
Paul Bakkereba3ccf2013-09-09 15:55:12 +0200545 * polarssl_strerror()
Paul Bakker8fe40dc2013-02-02 12:43:08 +0100546 */
547#define POLARSSL_ERROR_STRERROR_DUMMY
548
549/**
Paul Bakker15566e42011-04-24 21:19:15 +0000550 * \def POLARSSL_GENPRIME
Paul Bakkerf3b86c12011-01-27 15:24:17 +0000551 *
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +0200552 * Enable the prime-number generation code.
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200553 *
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +0200554 * Requires: POLARSSL_BIGNUM_C
Paul Bakker5121ce52009-01-03 21:22:43 +0000555 */
Paul Bakker15566e42011-04-24 21:19:15 +0000556#define POLARSSL_GENPRIME
Paul Bakker5121ce52009-01-03 21:22:43 +0000557
Paul Bakkerf3b86c12011-01-27 15:24:17 +0000558/**
Paul Bakker335db3f2011-04-25 15:28:35 +0000559 * \def POLARSSL_FS_IO
560 *
561 * Enable functions that use the filesystem.
562 */
563#define POLARSSL_FS_IO
564
565/**
Paul Bakker43655f42011-12-15 20:11:16 +0000566 * \def POLARSSL_NO_DEFAULT_ENTROPY_SOURCES
567 *
568 * Do not add default entropy sources. These are the platform specific,
569 * hardclock and HAVEGE based poll functions.
570 *
571 * This is useful to have more control over the added entropy sources in an
572 * application.
573 *
574 * Uncomment this macro to prevent loading of default entropy functions.
Paul Bakker43655f42011-12-15 20:11:16 +0000575 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200576//#define POLARSSL_NO_DEFAULT_ENTROPY_SOURCES
Paul Bakker43655f42011-12-15 20:11:16 +0000577
578/**
Paul Bakker6083fd22011-12-03 21:45:14 +0000579 * \def POLARSSL_NO_PLATFORM_ENTROPY
580 *
581 * Do not use built-in platform entropy functions.
582 * This is useful if your platform does not support
583 * standards like the /dev/urandom or Windows CryptoAPI.
584 *
585 * Uncomment this macro to disable the built-in platform entropy functions.
Paul Bakker6083fd22011-12-03 21:45:14 +0000586 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200587//#define POLARSSL_NO_PLATFORM_ENTROPY
Paul Bakker6083fd22011-12-03 21:45:14 +0000588
589/**
Paul Bakker6e339b52013-07-03 13:37:05 +0200590 * \def POLARSSL_MEMORY_DEBUG
591 *
592 * Enable debugging of buffer allocator memory issues. Automatically prints
593 * (to stderr) all (fatal) messages on memory allocation issues. Enables
594 * function for 'debug output' of allocated memory.
595 *
596 * Requires: POLARSSL_MEMORY_BUFFER_ALLOC_C
597 * fprintf()
598 *
599 * Uncomment this macro to let the buffer allocator print out error messages.
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200600 */
601//#define POLARSSL_MEMORY_DEBUG
Paul Bakker6e339b52013-07-03 13:37:05 +0200602
603/**
604 * \def POLARSSL_MEMORY_BACKTRACE
605 *
606 * Include backtrace information with each allocated block.
607 *
608 * Requires: POLARSSL_MEMORY_BUFFER_ALLOC_C
609 * GLIBC-compatible backtrace() an backtrace_symbols() support
610 *
611 * Uncomment this macro to include backtrace information
Paul Bakker6e339b52013-07-03 13:37:05 +0200612 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200613//#define POLARSSL_MEMORY_BACKTRACE
Paul Bakker6e339b52013-07-03 13:37:05 +0200614
615/**
Paul Bakker48377d92013-08-30 12:06:24 +0200616 * \def POLARSSL_PKCS1_V15
617 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200618 * Enable support for PKCS#1 v1.5 encoding.
619 *
Paul Bakker48377d92013-08-30 12:06:24 +0200620 * Requires: POLARSSL_RSA_C
621 *
Paul Bakker48377d92013-08-30 12:06:24 +0200622 * This enables support for PKCS#1 v1.5 operations.
623 */
624#define POLARSSL_PKCS1_V15
625
626/**
Paul Bakker9dcc3222011-03-08 14:16:06 +0000627 * \def POLARSSL_PKCS1_V21
628 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200629 * Enable support for PKCS#1 v2.1 encoding.
630 *
Paul Bakker5690efc2011-05-26 13:16:06 +0000631 * Requires: POLARSSL_MD_C, POLARSSL_RSA_C
632 *
Paul Bakker9dcc3222011-03-08 14:16:06 +0000633 * This enables support for RSAES-OAEP and RSASSA-PSS operations.
634 */
635#define POLARSSL_PKCS1_V21
636
637/**
Paul Bakker0216cc12011-03-26 13:40:23 +0000638 * \def POLARSSL_RSA_NO_CRT
639 *
640 * Do not use the Chinese Remainder Theorem for the RSA private operation.
641 *
642 * Uncomment this macro to disable the use of CRT in RSA.
643 *
Paul Bakker0216cc12011-03-26 13:40:23 +0000644 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200645//#define POLARSSL_RSA_NO_CRT
Paul Bakker15566e42011-04-24 21:19:15 +0000646
647/**
648 * \def POLARSSL_SELF_TEST
649 *
650 * Enable the checkup functions (*_self_test).
651 */
652#define POLARSSL_SELF_TEST
Paul Bakker5c721f92011-07-27 16:51:09 +0000653
654/**
Paul Bakker40865c82013-01-31 17:13:13 +0100655 * \def POLARSSL_SSL_ALL_ALERT_MESSAGES
656 *
657 * Enable sending of alert messages in case of encountered errors as per RFC.
658 * If you choose not to send the alert messages, PolarSSL can still communicate
659 * with other servers, only debugging of failures is harder.
660 *
661 * The advantage of not sending alert messages, is that no information is given
662 * about reasons for failures thus preventing adversaries of gaining intel.
663 *
664 * Enable sending of all alert messages
665 */
666#define POLARSSL_SSL_ALERT_MESSAGES
667
668/**
Paul Bakkerd66f0702013-01-31 16:57:45 +0100669 * \def POLARSSL_SSL_DEBUG_ALL
670 *
671 * Enable the debug messages in SSL module for all issues.
672 * Debug messages have been disabled in some places to prevent timing
673 * attacks due to (unbalanced) debugging function calls.
674 *
675 * If you need all error reporting you should enable this during debugging,
676 * but remove this for production servers that should log as well.
677 *
678 * Uncomment this macro to report all debug messages on errors introducing
679 * a timing side-channel.
680 *
Paul Bakkerd66f0702013-01-31 16:57:45 +0100681 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200682//#define POLARSSL_SSL_DEBUG_ALL
Paul Bakkerd66f0702013-01-31 16:57:45 +0100683
684/**
Paul Bakker05ef8352012-05-08 09:17:57 +0000685 * \def POLARSSL_SSL_HW_RECORD_ACCEL
686 *
687 * Enable hooking functions in SSL module for hardware acceleration of
688 * individual records.
689 *
690 * Uncomment this macro to enable hooking functions.
Paul Bakker05ef8352012-05-08 09:17:57 +0000691 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200692//#define POLARSSL_SSL_HW_RECORD_ACCEL
Paul Bakker05ef8352012-05-08 09:17:57 +0000693
694/**
Paul Bakker78a8c712013-03-06 17:01:52 +0100695 * \def POLARSSL_SSL_SRV_SUPPORT_SSLV2_CLIENT_HELLO
696 *
697 * Enable support for receiving and parsing SSLv2 Client Hello messages for the
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200698 * SSL Server module (POLARSSL_SSL_SRV_C).
Paul Bakker78a8c712013-03-06 17:01:52 +0100699 *
700 * Comment this macro to disable support for SSLv2 Client Hello messages.
701 */
702#define POLARSSL_SSL_SRV_SUPPORT_SSLV2_CLIENT_HELLO
703
704/**
Manuel Pégourié-Gonnard1a9f2c72013-11-30 18:30:06 +0100705 * \def POLARSSL_SSL_SRV_RESPECT_CLIENT_PREFERENCE
706 *
707 * Pick the ciphersuite according to the client's preferences rather than ours
708 * in the SSL Server module (POLARSSL_SSL_SRV_C).
709 *
710 * Uncomment this macro to respect client's ciphersuite order
711 */
712//#define POLARSSL_SSL_SRV_RESPECT_CLIENT_PREFERENCE
713
714/**
Paul Bakker05decb22013-08-15 13:33:48 +0200715 * \def POLARSSL_SSL_MAX_FRAGMENT_LENGTH
716 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200717 * Enable support for RFC 6066 max_fragment_length extension in SSL.
Paul Bakker05decb22013-08-15 13:33:48 +0200718 *
719 * Comment this macro to disable support for the max_fragment_length extension
720 */
721#define POLARSSL_SSL_MAX_FRAGMENT_LENGTH
722
723/**
Paul Bakkerd2f068e2013-08-27 21:19:20 +0200724 * \def POLARSSL_SSL_PROTO_SSL3
725 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200726 * Enable support for SSL 3.0.
Paul Bakkerd2f068e2013-08-27 21:19:20 +0200727 *
728 * Requires: POLARSSL_MD5_C
729 * POLARSSL_SHA1_C
730 *
731 * Comment this macro to disable support for SSL 3.0
732 */
733#define POLARSSL_SSL_PROTO_SSL3
734
735/**
736 * \def POLARSSL_SSL_PROTO_TLS1
737 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200738 * Enable support for TLS 1.0.
Paul Bakkerd2f068e2013-08-27 21:19:20 +0200739 *
740 * Requires: POLARSSL_MD5_C
741 * POLARSSL_SHA1_C
742 *
743 * Comment this macro to disable support for TLS 1.0
744 */
745#define POLARSSL_SSL_PROTO_TLS1
746
747/**
748 * \def POLARSSL_SSL_PROTO_TLS1_1
749 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200750 * Enable support for TLS 1.1.
Paul Bakkerd2f068e2013-08-27 21:19:20 +0200751 *
752 * Requires: POLARSSL_MD5_C
753 * POLARSSL_SHA1_C
754 *
755 * Comment this macro to disable support for TLS 1.1
756 */
757#define POLARSSL_SSL_PROTO_TLS1_1
758
759/**
760 * \def POLARSSL_SSL_PROTO_TLS1_2
761 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200762 * Enable support for TLS 1.2.
Paul Bakkerd2f068e2013-08-27 21:19:20 +0200763 *
Manuel Pégourié-Gonnard7c3291e2013-10-27 14:29:51 +0100764 * Requires: POLARSSL_SHA1_C or POLARSSL_SHA256_C or POLARSSL_SHA512_C
Paul Bakkerd2f068e2013-08-27 21:19:20 +0200765 * (Depends on ciphersuites)
766 *
767 * Comment this macro to disable support for TLS 1.2
768 */
769#define POLARSSL_SSL_PROTO_TLS1_2
770
771/**
Paul Bakkera503a632013-08-14 13:48:06 +0200772 * \def POLARSSL_SSL_SESSION_TICKETS
773 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200774 * Enable support for RFC 5077 session tickets in SSL.
Paul Bakkera503a632013-08-14 13:48:06 +0200775 *
776 * Requires: POLARSSL_AES_C
777 * POLARSSL_SHA256_C
Manuel Pégourié-Gonnard92cb1d32013-09-13 16:24:20 +0200778 * POLARSSL_CIPHER_MODE_CBC
Paul Bakkera503a632013-08-14 13:48:06 +0200779 *
780 * Comment this macro to disable support for SSL session tickets
781 */
782#define POLARSSL_SSL_SESSION_TICKETS
783
784/**
Paul Bakker0be444a2013-08-27 21:55:01 +0200785 * \def POLARSSL_SSL_SERVER_NAME_INDICATION
786 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200787 * Enable support for RFC 6066 server name indication (SNI) in SSL.
Paul Bakker0be444a2013-08-27 21:55:01 +0200788 *
789 * Comment this macro to disable support for server name indication in SSL
790 */
791#define POLARSSL_SSL_SERVER_NAME_INDICATION
792
793/**
Paul Bakker1f2bc622013-08-15 13:45:55 +0200794 * \def POLARSSL_SSL_TRUNCATED_HMAC
795 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200796 * Enable support for RFC 6066 truncated HMAC in SSL.
Paul Bakker1f2bc622013-08-15 13:45:55 +0200797 *
798 * Comment this macro to disable support for truncated HMAC in SSL
799 */
800#define POLARSSL_SSL_TRUNCATED_HMAC
801
802/**
Paul Bakker2466d932013-09-28 14:40:38 +0200803 * \def POLARSSL_THREADING_ALT
804 *
805 * Provide your own alternate threading implementation.
806 *
807 * Requires: POLARSSL_THREADING_C
808 *
809 * Uncomment this to allow your own alternate threading implementation.
Paul Bakker2466d932013-09-28 14:40:38 +0200810 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200811//#define POLARSSL_THREADING_ALT
Paul Bakker2466d932013-09-28 14:40:38 +0200812
813/**
Paul Bakker2466d932013-09-28 14:40:38 +0200814 * \def POLARSSL_THREADING_PTHREAD
815 *
816 * Enable the pthread wrapper layer for the threading layer.
817 *
818 * Requires: POLARSSL_THREADING_C
819 *
820 * Uncomment this to enable pthread mutexes.
Paul Bakker2466d932013-09-28 14:40:38 +0200821 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200822//#define POLARSSL_THREADING_PTHREAD
Paul Bakker2466d932013-09-28 14:40:38 +0200823
824/**
Paul Bakkerc27c4e22013-09-23 15:01:36 +0200825 * \def POLARSSL_X509_ALLOW_EXTENSIONS_NON_V3
826 *
827 * If set, the X509 parser will not break-off when parsing an X509 certificate
828 * and encountering an extension in a v1 or v2 certificate.
829 *
830 * Uncomment to prevent an error.
Paul Bakkerc27c4e22013-09-23 15:01:36 +0200831 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200832//#define POLARSSL_X509_ALLOW_EXTENSIONS_NON_V3
Paul Bakkerc27c4e22013-09-23 15:01:36 +0200833
834/**
Paul Bakker5c721f92011-07-27 16:51:09 +0000835 * \def POLARSSL_X509_ALLOW_UNSUPPORTED_CRITICAL_EXTENSION
836 *
837 * If set, the X509 parser will not break-off when parsing an X509 certificate
838 * and encountering an unknown critical extension.
839 *
840 * Uncomment to prevent an error.
Paul Bakker5c721f92011-07-27 16:51:09 +0000841 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200842//#define POLARSSL_X509_ALLOW_UNSUPPORTED_CRITICAL_EXTENSION
Paul Bakker2770fbd2012-07-03 13:30:23 +0000843
844/**
845 * \def POLARSSL_ZLIB_SUPPORT
846 *
847 * If set, the SSL/TLS module uses ZLIB to support compression and
848 * decompression of packet data.
849 *
850 * Used in: library/ssl_tls.c
851 * library/ssl_cli.c
852 * library/ssl_srv.c
853 *
854 * This feature requires zlib library and headers to be present.
855 *
856 * Uncomment to enable use of ZLIB
Paul Bakker2770fbd2012-07-03 13:30:23 +0000857 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200858//#define POLARSSL_ZLIB_SUPPORT
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200859/* \} name SECTION: PolarSSL feature support */
Paul Bakker0a62cd12011-01-21 11:00:08 +0000860
Paul Bakkerf3b86c12011-01-27 15:24:17 +0000861/**
Paul Bakker0a62cd12011-01-21 11:00:08 +0000862 * \name SECTION: PolarSSL modules
863 *
864 * This section enables or disables entire modules in PolarSSL
865 * \{
866 */
Paul Bakker5121ce52009-01-03 21:22:43 +0000867
Paul Bakkerf3b86c12011-01-27 15:24:17 +0000868/**
Manuel Pégourié-Gonnard92ac76f2013-12-16 17:12:53 +0100869 * \def POLARSSL_AESNI_C
870 *
871 * Enable AES-NI support on x86-64.
872 *
873 * Module: library/aesni.c
874 * Caller: library/aes.c
875 *
876 * Requires: POLARSSL_HAVE_ASM
877 *
878 * This modules adds support for the AES-NI instructions on x86-64
879 */
880#define POLARSSL_AESNI_C
881
882/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +0000883 * \def POLARSSL_AES_C
884 *
885 * Enable the AES block cipher.
886 *
Paul Bakker5121ce52009-01-03 21:22:43 +0000887 * Module: library/aes.c
888 * Caller: library/ssl_tls.c
Paul Bakker96743fc2011-02-12 14:30:57 +0000889 * library/pem.c
Paul Bakker6083fd22011-12-03 21:45:14 +0000890 * library/ctr_drbg.c
Paul Bakker5121ce52009-01-03 21:22:43 +0000891 *
Paul Bakker645ce3a2012-10-31 12:32:41 +0000892 * This module enables the following ciphersuites (if other requisites are
893 * enabled as well):
Manuel Pégourié-Gonnard25781b22013-12-11 16:17:10 +0100894 * TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA
895 * TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA
896 * TLS_ECDH_RSA_WITH_AES_128_CBC_SHA
897 * TLS_ECDH_RSA_WITH_AES_256_CBC_SHA
898 * TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256
899 * TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384
900 * TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256
901 * TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384
902 * TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256
903 * TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384
904 * TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256
905 * TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200906 * TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384
907 * TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
908 * TLS_DHE_RSA_WITH_AES_256_GCM_SHA384
909 * TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384
910 * TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384
Paul Bakker645ce3a2012-10-31 12:32:41 +0000911 * TLS_DHE_RSA_WITH_AES_256_CBC_SHA256
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200912 * TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA
Paul Bakker41c83d32013-03-20 14:39:14 +0100913 * TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200914 * TLS_DHE_RSA_WITH_AES_256_CBC_SHA
915 * TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
916 * TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
917 * TLS_DHE_RSA_WITH_AES_128_GCM_SHA256
918 * TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256
919 * TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256
920 * TLS_DHE_RSA_WITH_AES_128_CBC_SHA256
921 * TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA
922 * TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA
923 * TLS_DHE_RSA_WITH_AES_128_CBC_SHA
924 * TLS_DHE_PSK_WITH_AES_256_GCM_SHA384
925 * TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA384
926 * TLS_DHE_PSK_WITH_AES_256_CBC_SHA384
927 * TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA
928 * TLS_DHE_PSK_WITH_AES_256_CBC_SHA
929 * TLS_DHE_PSK_WITH_AES_128_GCM_SHA256
930 * TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA256
931 * TLS_DHE_PSK_WITH_AES_128_CBC_SHA256
932 * TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA
933 * TLS_DHE_PSK_WITH_AES_128_CBC_SHA
934 * TLS_RSA_WITH_AES_256_GCM_SHA384
935 * TLS_RSA_WITH_AES_256_CBC_SHA256
936 * TLS_RSA_WITH_AES_256_CBC_SHA
937 * TLS_RSA_WITH_AES_128_GCM_SHA256
938 * TLS_RSA_WITH_AES_128_CBC_SHA256
939 * TLS_RSA_WITH_AES_128_CBC_SHA
940 * TLS_RSA_PSK_WITH_AES_256_GCM_SHA384
941 * TLS_RSA_PSK_WITH_AES_256_CBC_SHA384
942 * TLS_RSA_PSK_WITH_AES_256_CBC_SHA
943 * TLS_RSA_PSK_WITH_AES_128_GCM_SHA256
944 * TLS_RSA_PSK_WITH_AES_128_CBC_SHA256
945 * TLS_RSA_PSK_WITH_AES_128_CBC_SHA
946 * TLS_PSK_WITH_AES_256_GCM_SHA384
947 * TLS_PSK_WITH_AES_256_CBC_SHA384
Paul Bakkerd4a56ec2013-04-16 18:05:29 +0200948 * TLS_PSK_WITH_AES_256_CBC_SHA
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200949 * TLS_PSK_WITH_AES_128_GCM_SHA256
950 * TLS_PSK_WITH_AES_128_CBC_SHA256
951 * TLS_PSK_WITH_AES_128_CBC_SHA
Paul Bakker6deb37e2013-02-19 13:17:08 +0100952 *
Paul Bakkercff68422013-09-15 20:43:33 +0200953 * PEM_PARSE uses AES for decrypting encrypted keys.
Paul Bakker5121ce52009-01-03 21:22:43 +0000954 */
Paul Bakker40e46942009-01-03 21:51:57 +0000955#define POLARSSL_AES_C
Paul Bakker5121ce52009-01-03 21:22:43 +0000956
Paul Bakkerf3b86c12011-01-27 15:24:17 +0000957/**
958 * \def POLARSSL_ARC4_C
959 *
960 * Enable the ARCFOUR stream cipher.
961 *
Paul Bakker5121ce52009-01-03 21:22:43 +0000962 * Module: library/arc4.c
963 * Caller: library/ssl_tls.c
964 *
Paul Bakker41c83d32013-03-20 14:39:14 +0100965 * This module enables the following ciphersuites (if other requisites are
966 * enabled as well):
Manuel Pégourié-Gonnard25781b22013-12-11 16:17:10 +0100967 * TLS_ECDH_ECDSA_WITH_RC4_128_SHA
968 * TLS_ECDH_RSA_WITH_RC4_128_SHA
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200969 * TLS_ECDHE_ECDSA_WITH_RC4_128_SHA
Paul Bakker41c83d32013-03-20 14:39:14 +0100970 * TLS_ECDHE_RSA_WITH_RC4_128_SHA
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200971 * TLS_ECDHE_PSK_WITH_RC4_128_SHA
972 * TLS_DHE_PSK_WITH_RC4_128_SHA
973 * TLS_RSA_WITH_RC4_128_SHA
974 * TLS_RSA_WITH_RC4_128_MD5
975 * TLS_RSA_PSK_WITH_RC4_128_SHA
Paul Bakkerd4a56ec2013-04-16 18:05:29 +0200976 * TLS_PSK_WITH_RC4_128_SHA
Paul Bakker5121ce52009-01-03 21:22:43 +0000977 */
Paul Bakker40e46942009-01-03 21:51:57 +0000978#define POLARSSL_ARC4_C
Paul Bakker5121ce52009-01-03 21:22:43 +0000979
Paul Bakkerf3b86c12011-01-27 15:24:17 +0000980/**
Paul Bakkerefc30292011-11-10 14:43:23 +0000981 * \def POLARSSL_ASN1_PARSE_C
982 *
983 * Enable the generic ASN1 parser.
984 *
985 * Module: library/asn1.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +0200986 * Caller: library/x509.c
987 * library/dhm.c
988 * library/pkcs12.c
989 * library/pkcs5.c
990 * library/pkparse.c
Paul Bakkerefc30292011-11-10 14:43:23 +0000991 */
992#define POLARSSL_ASN1_PARSE_C
993
994/**
Paul Bakkerbdb912d2012-02-13 23:11:30 +0000995 * \def POLARSSL_ASN1_WRITE_C
996 *
997 * Enable the generic ASN1 writer.
998 *
999 * Module: library/asn1write.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001000 * Caller: library/ecdsa.c
1001 * library/pkwrite.c
1002 * library/x509_create.c
1003 * library/x509write_crt.c
1004 * library/x509write_csr.c
Paul Bakkerbdb912d2012-02-13 23:11:30 +00001005 */
1006#define POLARSSL_ASN1_WRITE_C
1007
1008/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001009 * \def POLARSSL_BASE64_C
1010 *
1011 * Enable the Base64 module.
1012 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001013 * Module: library/base64.c
Paul Bakker5690efc2011-05-26 13:16:06 +00001014 * Caller: library/pem.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001015 *
Paul Bakker5690efc2011-05-26 13:16:06 +00001016 * This module is required for PEM support (required by X.509).
Paul Bakker5121ce52009-01-03 21:22:43 +00001017 */
Paul Bakker40e46942009-01-03 21:51:57 +00001018#define POLARSSL_BASE64_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001019
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001020/**
1021 * \def POLARSSL_BIGNUM_C
1022 *
Paul Bakker9a736322012-11-14 12:39:52 +00001023 * Enable the multi-precision integer library.
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001024 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001025 * Module: library/bignum.c
1026 * Caller: library/dhm.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001027 * library/ecp.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001028 * library/rsa.c
1029 * library/ssl_tls.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001030 *
1031 * This module is required for RSA and DHM support.
1032 */
Paul Bakker40e46942009-01-03 21:51:57 +00001033#define POLARSSL_BIGNUM_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001034
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001035/**
Paul Bakkera9379c02012-07-04 11:02:11 +00001036 * \def POLARSSL_BLOWFISH_C
1037 *
1038 * Enable the Blowfish block cipher.
1039 *
1040 * Module: library/blowfish.c
1041 */
1042#define POLARSSL_BLOWFISH_C
1043
1044/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001045 * \def POLARSSL_CAMELLIA_C
1046 *
1047 * Enable the Camellia block cipher.
1048 *
Paul Bakker38119b12009-01-10 23:31:23 +00001049 * Module: library/camellia.c
Paul Bakker13e2dfe2009-07-28 07:18:38 +00001050 * Caller: library/ssl_tls.c
Paul Bakker38119b12009-01-10 23:31:23 +00001051 *
Paul Bakker645ce3a2012-10-31 12:32:41 +00001052 * This module enables the following ciphersuites (if other requisites are
1053 * enabled as well):
Manuel Pégourié-Gonnard25781b22013-12-11 16:17:10 +01001054 * TLS_ECDH_ECDSA_WITH_CAMELLIA_128_CBC_SHA256
1055 * TLS_ECDH_ECDSA_WITH_CAMELLIA_256_CBC_SHA384
1056 * TLS_ECDH_RSA_WITH_CAMELLIA_128_CBC_SHA256
1057 * TLS_ECDH_RSA_WITH_CAMELLIA_256_CBC_SHA384
1058 * TLS_ECDH_ECDSA_WITH_CAMELLIA_128_GCM_SHA256
1059 * TLS_ECDH_ECDSA_WITH_CAMELLIA_256_GCM_SHA384
1060 * TLS_ECDH_RSA_WITH_CAMELLIA_128_GCM_SHA256
1061 * TLS_ECDH_RSA_WITH_CAMELLIA_256_GCM_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001062 * TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_GCM_SHA384
1063 * TLS_ECDHE_RSA_WITH_CAMELLIA_256_GCM_SHA384
1064 * TLS_DHE_RSA_WITH_CAMELLIA_256_GCM_SHA384
1065 * TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_CBC_SHA384
1066 * TLS_ECDHE_RSA_WITH_CAMELLIA_256_CBC_SHA384
Paul Bakker645ce3a2012-10-31 12:32:41 +00001067 * TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA256
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001068 * TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA
1069 * TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_GCM_SHA256
1070 * TLS_ECDHE_RSA_WITH_CAMELLIA_128_GCM_SHA256
1071 * TLS_DHE_RSA_WITH_CAMELLIA_128_GCM_SHA256
1072 * TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_CBC_SHA256
1073 * TLS_ECDHE_RSA_WITH_CAMELLIA_128_CBC_SHA256
1074 * TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA256
1075 * TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA
1076 * TLS_DHE_PSK_WITH_CAMELLIA_256_GCM_SHA384
1077 * TLS_ECDHE_PSK_WITH_CAMELLIA_256_CBC_SHA384
1078 * TLS_DHE_PSK_WITH_CAMELLIA_256_CBC_SHA384
1079 * TLS_DHE_PSK_WITH_CAMELLIA_128_GCM_SHA256
1080 * TLS_DHE_PSK_WITH_CAMELLIA_128_CBC_SHA256
1081 * TLS_ECDHE_PSK_WITH_CAMELLIA_128_CBC_SHA256
1082 * TLS_RSA_WITH_CAMELLIA_256_GCM_SHA384
1083 * TLS_RSA_WITH_CAMELLIA_256_CBC_SHA256
1084 * TLS_RSA_WITH_CAMELLIA_256_CBC_SHA
1085 * TLS_RSA_WITH_CAMELLIA_128_GCM_SHA256
1086 * TLS_RSA_WITH_CAMELLIA_128_CBC_SHA256
1087 * TLS_RSA_WITH_CAMELLIA_128_CBC_SHA
1088 * TLS_RSA_PSK_WITH_CAMELLIA_256_GCM_SHA384
1089 * TLS_RSA_PSK_WITH_CAMELLIA_256_CBC_SHA384
1090 * TLS_RSA_PSK_WITH_CAMELLIA_128_GCM_SHA256
1091 * TLS_RSA_PSK_WITH_CAMELLIA_128_CBC_SHA256
1092 * TLS_PSK_WITH_CAMELLIA_256_GCM_SHA384
1093 * TLS_PSK_WITH_CAMELLIA_256_CBC_SHA384
1094 * TLS_PSK_WITH_CAMELLIA_128_GCM_SHA256
1095 * TLS_PSK_WITH_CAMELLIA_128_CBC_SHA256
Paul Bakker38119b12009-01-10 23:31:23 +00001096 */
1097#define POLARSSL_CAMELLIA_C
1098
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001099/**
1100 * \def POLARSSL_CERTS_C
1101 *
1102 * Enable the test certificates.
1103 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001104 * Module: library/certs.c
1105 * Caller:
1106 *
Manuel Pégourié-Gonnard18dc0e22013-10-27 14:35:02 +01001107 * Requires: POLARSSL_PEM_PARSE_C
1108 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001109 * This module is used for testing (ssl_client/server).
1110 */
Paul Bakker40e46942009-01-03 21:51:57 +00001111#define POLARSSL_CERTS_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001112
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001113/**
1114 * \def POLARSSL_CIPHER_C
1115 *
1116 * Enable the generic cipher layer.
1117 *
Paul Bakker8123e9d2011-01-06 15:37:30 +00001118 * Module: library/cipher.c
Paul Bakker04784f52013-08-19 13:30:57 +02001119 * Caller: library/ssl_tls.c
Paul Bakker8123e9d2011-01-06 15:37:30 +00001120 *
1121 * Uncomment to enable generic cipher wrappers.
1122 */
1123#define POLARSSL_CIPHER_C
1124
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001125/**
Paul Bakker0e04d0e2011-11-27 14:46:59 +00001126 * \def POLARSSL_CTR_DRBG_C
1127 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001128 * Enable the CTR_DRBG AES-256-based random generator.
Paul Bakker0e04d0e2011-11-27 14:46:59 +00001129 *
1130 * Module: library/ctr_drbg.c
1131 * Caller:
1132 *
Paul Bakker6083fd22011-12-03 21:45:14 +00001133 * Requires: POLARSSL_AES_C
1134 *
Paul Bakker0e04d0e2011-11-27 14:46:59 +00001135 * This module provides the CTR_DRBG AES-256 random number generator.
1136 */
1137#define POLARSSL_CTR_DRBG_C
1138
1139/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001140 * \def POLARSSL_DEBUG_C
1141 *
1142 * Enable the debug functions.
1143 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001144 * Module: library/debug.c
1145 * Caller: library/ssl_cli.c
1146 * library/ssl_srv.c
1147 * library/ssl_tls.c
1148 *
1149 * This module provides debugging functions.
1150 */
Paul Bakker40e46942009-01-03 21:51:57 +00001151#define POLARSSL_DEBUG_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001152
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001153/**
1154 * \def POLARSSL_DES_C
1155 *
1156 * Enable the DES block cipher.
1157 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001158 * Module: library/des.c
Paul Bakker6deb37e2013-02-19 13:17:08 +01001159 * Caller: library/pem.c
1160 * library/ssl_tls.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001161 *
Paul Bakker645ce3a2012-10-31 12:32:41 +00001162 * This module enables the following ciphersuites (if other requisites are
1163 * enabled as well):
Manuel Pégourié-Gonnard25781b22013-12-11 16:17:10 +01001164 * TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA
1165 * TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001166 * TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA
Paul Bakker41c83d32013-03-20 14:39:14 +01001167 * TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001168 * TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA
1169 * TLS_ECDHE_PSK_WITH_3DES_EDE_CBC_SHA
1170 * TLS_DHE_PSK_WITH_3DES_EDE_CBC_SHA
1171 * TLS_RSA_WITH_3DES_EDE_CBC_SHA
1172 * TLS_RSA_PSK_WITH_3DES_EDE_CBC_SHA
Paul Bakkerd4a56ec2013-04-16 18:05:29 +02001173 * TLS_PSK_WITH_3DES_EDE_CBC_SHA
Paul Bakker6deb37e2013-02-19 13:17:08 +01001174 *
Paul Bakkercff68422013-09-15 20:43:33 +02001175 * PEM_PARSE uses DES/3DES for decrypting encrypted keys.
Paul Bakker5121ce52009-01-03 21:22:43 +00001176 */
Paul Bakker40e46942009-01-03 21:51:57 +00001177#define POLARSSL_DES_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001178
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001179/**
1180 * \def POLARSSL_DHM_C
1181 *
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001182 * Enable the Diffie-Hellman-Merkle module.
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001183 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001184 * Module: library/dhm.c
1185 * Caller: library/ssl_cli.c
1186 * library/ssl_srv.c
1187 *
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001188 * This module is used by the following key exchanges:
1189 * DHE-RSA, DHE-PSK
Paul Bakker5121ce52009-01-03 21:22:43 +00001190 */
Paul Bakker40e46942009-01-03 21:51:57 +00001191#define POLARSSL_DHM_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001192
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001193/**
Paul Bakkerd589a0d2013-03-13 16:30:17 +01001194 * \def POLARSSL_ECDH_C
1195 *
1196 * Enable the elliptic curve Diffie-Hellman library.
1197 *
1198 * Module: library/ecdh.c
Paul Bakker41c83d32013-03-20 14:39:14 +01001199 * Caller: library/ssl_cli.c
1200 * library/ssl_srv.c
1201 *
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001202 * This module is used by the following key exchanges:
1203 * ECDHE-ECDSA, ECDHE-RSA, DHE-PSK
Paul Bakkerd589a0d2013-03-13 16:30:17 +01001204 *
1205 * Requires: POLARSSL_ECP_C
1206 */
1207#define POLARSSL_ECDH_C
1208
1209/**
1210 * \def POLARSSL_ECDSA_C
1211 *
1212 * Enable the elliptic curve DSA library.
1213 *
1214 * Module: library/ecdsa.c
1215 * Caller:
1216 *
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001217 * This module is used by the following key exchanges:
1218 * ECDHE-ECDSA
1219 *
Manuel Pégourié-Gonnard4846f5e2013-08-08 14:36:15 +02001220 * Requires: POLARSSL_ECP_C, POLARSSL_ASN1_WRITE_C, POLARSSL_ASN1_PARSE_C
Paul Bakkerd589a0d2013-03-13 16:30:17 +01001221 */
1222#define POLARSSL_ECDSA_C
1223
1224/**
1225 * \def POLARSSL_ECP_C
1226 *
1227 * Enable the elliptic curve over GF(p) library.
1228 *
1229 * Module: library/ecp.c
1230 * Caller: library/ecdh.c
1231 * library/ecdsa.c
1232 *
Manuel Pégourié-Gonnardb8012fc2013-10-10 15:40:49 +02001233 * Requires: POLARSSL_BIGNUM_C and at least one POLARSSL_ECP_DP_XXX_ENABLED
Paul Bakkerd589a0d2013-03-13 16:30:17 +01001234 */
1235#define POLARSSL_ECP_C
1236
1237/**
Paul Bakker6083fd22011-12-03 21:45:14 +00001238 * \def POLARSSL_ENTROPY_C
1239 *
1240 * Enable the platform-specific entropy code.
1241 *
1242 * Module: library/entropy.c
1243 * Caller:
1244 *
Paul Bakker9e36f042013-06-30 14:34:05 +02001245 * Requires: POLARSSL_SHA512_C
Paul Bakker6083fd22011-12-03 21:45:14 +00001246 *
1247 * This module provides a generic entropy pool
1248 */
1249#define POLARSSL_ENTROPY_C
1250
1251/**
Paul Bakker9d781402011-05-09 16:17:09 +00001252 * \def POLARSSL_ERROR_C
1253 *
1254 * Enable error code to error string conversion.
1255 *
1256 * Module: library/error.c
1257 * Caller:
1258 *
1259 * This module enables err_strerror().
1260 */
1261#define POLARSSL_ERROR_C
1262
1263/**
Paul Bakker89e80c92012-03-20 13:50:09 +00001264 * \def POLARSSL_GCM_C
1265 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001266 * Enable the Galois/Counter Mode (GCM) for AES.
Paul Bakker89e80c92012-03-20 13:50:09 +00001267 *
1268 * Module: library/gcm.c
1269 *
Manuel Pégourié-Gonnard7bd8a992013-10-24 13:39:39 +02001270 * Requires: POLARSSL_AES_C or POLARSSL_CAMELLIA_C
Paul Bakker645ce3a2012-10-31 12:32:41 +00001271 *
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001272 * This module enables the AES-GCM and CAMELLIA-GCM ciphersuites, if other
1273 * requisites are enabled as well.
Paul Bakker89e80c92012-03-20 13:50:09 +00001274 */
1275#define POLARSSL_GCM_C
1276
1277/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001278 * \def POLARSSL_HAVEGE_C
1279 *
1280 * Enable the HAVEGE random generator.
1281 *
Paul Bakker2a844242013-06-24 13:01:53 +02001282 * Warning: the HAVEGE random generator is not suitable for virtualized
1283 * environments
1284 *
1285 * Warning: the HAVEGE random generator is dependent on timing and specific
1286 * processor traits. It is therefore not advised to use HAVEGE as
1287 * your applications primary random generator or primary entropy pool
1288 * input. As a secondary input to your entropy pool, it IS able add
1289 * the (limited) extra entropy it provides.
1290 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001291 * Module: library/havege.c
1292 * Caller:
1293 *
Paul Bakker5690efc2011-05-26 13:16:06 +00001294 * Requires: POLARSSL_TIMING_C
1295 *
Paul Bakker2a844242013-06-24 13:01:53 +02001296 * Uncomment to enable the HAVEGE random generator.
Paul Bakker2a844242013-06-24 13:01:53 +02001297 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +02001298//#define POLARSSL_HAVEGE_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001299
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001300/**
1301 * \def POLARSSL_MD_C
1302 *
1303 * Enable the generic message digest layer.
1304 *
Paul Bakker17373852011-01-06 14:20:01 +00001305 * Module: library/md.c
1306 * Caller:
1307 *
1308 * Uncomment to enable generic message digest wrappers.
1309 */
1310#define POLARSSL_MD_C
1311
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001312/**
1313 * \def POLARSSL_MD2_C
1314 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001315 * Enable the MD2 hash algorithm.
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001316 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001317 * Module: library/md2.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001318 * Caller:
Paul Bakker5121ce52009-01-03 21:22:43 +00001319 *
1320 * Uncomment to enable support for (rare) MD2-signed X.509 certs.
Paul Bakker6506aff2009-07-28 20:52:02 +00001321 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +02001322//#define POLARSSL_MD2_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001323
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001324/**
1325 * \def POLARSSL_MD4_C
1326 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001327 * Enable the MD4 hash algorithm.
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001328 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001329 * Module: library/md4.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001330 * Caller:
Paul Bakker5121ce52009-01-03 21:22:43 +00001331 *
1332 * Uncomment to enable support for (rare) MD4-signed X.509 certs.
Paul Bakker6506aff2009-07-28 20:52:02 +00001333 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +02001334//#define POLARSSL_MD4_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001335
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001336/**
1337 * \def POLARSSL_MD5_C
1338 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001339 * Enable the MD5 hash algorithm.
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001340 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001341 * Module: library/md5.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001342 * Caller: library/md.c
1343 * library/pem.c
Paul Bakker6deb37e2013-02-19 13:17:08 +01001344 * library/ssl_tls.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001345 *
1346 * This module is required for SSL/TLS and X.509.
Paul Bakkercff68422013-09-15 20:43:33 +02001347 * PEM_PARSE uses MD5 for decrypting encrypted keys.
Paul Bakker5121ce52009-01-03 21:22:43 +00001348 */
Paul Bakker40e46942009-01-03 21:51:57 +00001349#define POLARSSL_MD5_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001350
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001351/**
Paul Bakker6e339b52013-07-03 13:37:05 +02001352 * \def POLARSSL_MEMORY_C
1353 *
1354 * Enable the memory allocation layer.
1355 * By default PolarSSL uses the system-provided malloc() and free().
1356 * (As long as POLARSSL_MEMORY_STDMALLOC and POLARSSL_MEMORY_STDFREE
1357 * are defined and unmodified)
1358 *
1359 * This allows different allocators (self-implemented or provided)
1360 *
1361 * Enable this layer to allow use of alternative memory allocators.
Paul Bakker6e339b52013-07-03 13:37:05 +02001362 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +02001363//#define POLARSSL_MEMORY_C
Paul Bakker6e339b52013-07-03 13:37:05 +02001364
1365/**
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001366 * \def POLARSSL_MEMORY_BUFFER_ALLOC_C
1367 *
1368 * Enable the buffer allocator implementation that makes use of a (stack)
1369 * based buffer to 'allocate' dynamic memory. (replaces malloc() and free()
1370 * calls)
Paul Bakker6e339b52013-07-03 13:37:05 +02001371 *
1372 * Module: library/memory_buffer_alloc.c
1373 *
1374 * Requires: POLARSSL_MEMORY_C
1375 *
1376 * Enable this module to enable the buffer memory allocator.
Paul Bakker6e339b52013-07-03 13:37:05 +02001377 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +02001378//#define POLARSSL_MEMORY_BUFFER_ALLOC_C
Paul Bakker6e339b52013-07-03 13:37:05 +02001379
1380/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001381 * \def POLARSSL_NET_C
1382 *
1383 * Enable the TCP/IP networking routines.
1384 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001385 * Module: library/net.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001386 *
1387 * This module provides TCP/IP networking routines.
1388 */
Paul Bakker40e46942009-01-03 21:51:57 +00001389#define POLARSSL_NET_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001390
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001391/**
Paul Bakkerc70b9822013-04-07 22:00:46 +02001392 * \def POLARSSL_OID_C
1393 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001394 * Enable the OID database.
Paul Bakkerc70b9822013-04-07 22:00:46 +02001395 *
1396 * Module: library/oid.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001397 * Caller: library/asn1write.c
1398 * library/pkcs5.c
1399 * library/pkparse.c
1400 * library/pkwrite.c
1401 * library/rsa.c
1402 * library/x509.c
1403 * library/x509_create.c
1404 * library/x509_crl.c
1405 * library/x509_crt.c
1406 * library/x509_csr.c
1407 * library/x509write_crt.c
1408 * library/x509write_csr.c
Paul Bakkerc70b9822013-04-07 22:00:46 +02001409 *
1410 * This modules translates between OIDs and internal values.
1411 */
1412#define POLARSSL_OID_C
1413
1414/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001415 * \def POLARSSL_PADLOCK_C
1416 *
1417 * Enable VIA Padlock support on x86.
1418 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001419 * Module: library/padlock.c
1420 * Caller: library/aes.c
1421 *
Manuel Pégourié-Gonnard92ac76f2013-12-16 17:12:53 +01001422 * Requires: POLARSSL_HAVE_ASM
1423 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001424 * This modules adds support for the VIA PadLock on x86.
1425 */
Paul Bakker40e46942009-01-03 21:51:57 +00001426#define POLARSSL_PADLOCK_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001427
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001428/**
Paul Bakkerf518b162012-08-23 13:03:18 +00001429 * \def POLARSSL_PBKDF2_C
1430 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001431 * Enable PKCS#5 PBKDF2 key derivation function.
Paul Bakkerb0c19a42013-06-24 19:26:38 +02001432 * DEPRECATED: Use POLARSSL_PKCS5_C instead
Paul Bakkerf518b162012-08-23 13:03:18 +00001433 *
1434 * Module: library/pbkdf2.c
1435 *
Paul Bakkerb0c19a42013-06-24 19:26:38 +02001436 * Requires: POLARSSL_PKCS5_C
Paul Bakkerf518b162012-08-23 13:03:18 +00001437 *
1438 * This module adds support for the PKCS#5 PBKDF2 key derivation function.
Paul Bakkerf518b162012-08-23 13:03:18 +00001439 */
Paul Bakker370e90c2013-04-08 15:19:43 +02001440#define POLARSSL_PBKDF2_C
Paul Bakkerf518b162012-08-23 13:03:18 +00001441
1442/**
Paul Bakkercff68422013-09-15 20:43:33 +02001443 * \def POLARSSL_PEM_PARSE_C
Paul Bakker96743fc2011-02-12 14:30:57 +00001444 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001445 * Enable PEM decoding / parsing.
Paul Bakker96743fc2011-02-12 14:30:57 +00001446 *
1447 * Module: library/pem.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001448 * Caller: library/dhm.c
Paul Bakkercff68422013-09-15 20:43:33 +02001449 * library/pkparse.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001450 * library/x509_crl.c
1451 * library/x509_crt.c
1452 * library/x509_csr.c
Paul Bakker96743fc2011-02-12 14:30:57 +00001453 *
Paul Bakker5690efc2011-05-26 13:16:06 +00001454 * Requires: POLARSSL_BASE64_C
1455 *
Paul Bakkercff68422013-09-15 20:43:33 +02001456 * This modules adds support for decoding / parsing PEM files.
Paul Bakker96743fc2011-02-12 14:30:57 +00001457 */
Paul Bakkercff68422013-09-15 20:43:33 +02001458#define POLARSSL_PEM_PARSE_C
1459
1460/**
1461 * \def POLARSSL_PEM_WRITE_C
1462 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001463 * Enable PEM encoding / writing.
Paul Bakkercff68422013-09-15 20:43:33 +02001464 *
1465 * Module: library/pem.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001466 * Caller: library/pkwrite.c
1467 * library/x509write_crt.c
1468 * library/x509write_csr.c
Paul Bakkercff68422013-09-15 20:43:33 +02001469 *
1470 * Requires: POLARSSL_BASE64_C
1471 *
1472 * This modules adds support for encoding / writing PEM files.
1473 */
1474#define POLARSSL_PEM_WRITE_C
Paul Bakker96743fc2011-02-12 14:30:57 +00001475
1476/**
Manuel Pégourié-Gonnardc40b4c32013-08-22 13:29:31 +02001477 * \def POLARSSL_PK_C
1478 *
1479 * Enable the generic public (asymetric) key layer.
1480 *
1481 * Module: library/pk.c
Manuel Pégourié-Gonnard1a483832013-09-20 12:29:15 +02001482 * Caller: library/ssl_tls.c
Manuel Pégourié-Gonnardc40b4c32013-08-22 13:29:31 +02001483 * library/ssl_cli.c
1484 * library/ssl_srv.c
1485 *
Manuel Pégourié-Gonnard1a483832013-09-20 12:29:15 +02001486 * Requires: POLARSSL_RSA_C or POLARSSL_ECP_C
1487 *
Manuel Pégourié-Gonnardc40b4c32013-08-22 13:29:31 +02001488 * Uncomment to enable generic public key wrappers.
1489 */
1490#define POLARSSL_PK_C
1491
1492/**
Paul Bakker4606c732013-09-15 17:04:23 +02001493 * \def POLARSSL_PK_PARSE_C
1494 *
1495 * Enable the generic public (asymetric) key parser.
1496 *
1497 * Module: library/pkparse.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001498 * Caller: library/x509_crt.c
1499 * library/x509_csr.c
Paul Bakker4606c732013-09-15 17:04:23 +02001500 *
1501 * Requires: POLARSSL_PK_C
1502 *
1503 * Uncomment to enable generic public key parse functions.
1504 */
1505#define POLARSSL_PK_PARSE_C
1506
1507/**
1508 * \def POLARSSL_PK_WRITE_C
1509 *
Paul Bakkerf20ba4b2013-09-16 22:46:20 +02001510 * Enable the generic public (asymetric) key writer.
Paul Bakker4606c732013-09-15 17:04:23 +02001511 *
1512 * Module: library/pkwrite.c
1513 * Caller: library/x509write.c
1514 *
1515 * Requires: POLARSSL_PK_C
1516 *
1517 * Uncomment to enable generic public key write functions.
1518 */
1519#define POLARSSL_PK_WRITE_C
1520
1521/**
Paul Bakkerb0c19a42013-06-24 19:26:38 +02001522 * \def POLARSSL_PKCS5_C
1523 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001524 * Enable PKCS#5 functions.
Paul Bakkerb0c19a42013-06-24 19:26:38 +02001525 *
1526 * Module: library/pkcs5.c
1527 *
1528 * Requires: POLARSSL_MD_C
1529 *
1530 * This module adds support for the PKCS#5 functions.
1531 */
1532#define POLARSSL_PKCS5_C
1533
1534/**
Paul Bakker5690efc2011-05-26 13:16:06 +00001535 * \def POLARSSL_PKCS11_C
1536 *
Paul Bakkereb2c6582012-09-27 19:15:01 +00001537 * Enable wrapper for PKCS#11 smartcard support.
Paul Bakker5690efc2011-05-26 13:16:06 +00001538 *
Manuel Pégourié-Gonnard51be5592013-08-22 13:35:53 +02001539 * Module: library/pkcs11.c
1540 * Caller: library/pk.c
Paul Bakker5690efc2011-05-26 13:16:06 +00001541 *
Manuel Pégourié-Gonnard51be5592013-08-22 13:35:53 +02001542 * Requires: POLARSSL_PK_C
Paul Bakker5690efc2011-05-26 13:16:06 +00001543 *
Paul Bakkereb2c6582012-09-27 19:15:01 +00001544 * This module enables SSL/TLS PKCS #11 smartcard support.
Paul Bakker5690efc2011-05-26 13:16:06 +00001545 * Requires the presence of the PKCS#11 helper library (libpkcs11-helper)
Paul Bakker5690efc2011-05-26 13:16:06 +00001546 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +02001547//#define POLARSSL_PKCS11_C
Paul Bakker5690efc2011-05-26 13:16:06 +00001548
1549/**
Paul Bakkerf1f21fe2013-06-24 19:17:19 +02001550 * \def POLARSSL_PKCS12_C
1551 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001552 * Enable PKCS#12 PBE functions.
Paul Bakkerf1f21fe2013-06-24 19:17:19 +02001553 * Adds algorithms for parsing PKCS#8 encrypted private keys
1554 *
1555 * Module: library/pkcs12.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001556 * Caller: library/pkparse.c
Paul Bakkerf1f21fe2013-06-24 19:17:19 +02001557 *
Paul Bakkerb0713c72013-06-24 19:34:08 +02001558 * Requires: POLARSSL_ASN1_PARSE_C, POLARSSL_CIPHER_C, POLARSSL_MD_C
1559 * Can use: POLARSSL_ARC4_C
Paul Bakkerf1f21fe2013-06-24 19:17:19 +02001560 *
1561 * This module enables PKCS#12 functions.
1562 */
1563#define POLARSSL_PKCS12_C
1564
1565/**
Paul Bakker61b699e2014-01-22 13:35:29 +01001566 * \def POLARSSL_RIPEMD160_C
Manuel Pégourié-Gonnardcab4a882014-01-17 12:42:35 +01001567 *
1568 * Enable the RIPEMD-160 hash algorithm.
1569 *
Paul Bakker61b699e2014-01-22 13:35:29 +01001570 * Module: library/ripemd160.c
Manuel Pégourié-Gonnardcab4a882014-01-17 12:42:35 +01001571 * Caller: library/md.c
1572 *
1573 */
Paul Bakker61b699e2014-01-22 13:35:29 +01001574#define POLARSSL_RIPEMD160_C
Manuel Pégourié-Gonnardcab4a882014-01-17 12:42:35 +01001575
1576/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001577 * \def POLARSSL_RSA_C
1578 *
1579 * Enable the RSA public-key cryptosystem.
1580 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001581 * Module: library/rsa.c
1582 * Caller: library/ssl_cli.c
1583 * library/ssl_srv.c
1584 * library/ssl_tls.c
1585 * library/x509.c
1586 *
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001587 * This module is used by the following key exchanges:
1588 * RSA, DHE-RSA, ECDHE-RSA, RSA-PSK
Paul Bakker5690efc2011-05-26 13:16:06 +00001589 *
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001590 * Requires: POLARSSL_BIGNUM_C, POLARSSL_OID_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001591 */
Paul Bakker40e46942009-01-03 21:51:57 +00001592#define POLARSSL_RSA_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001593
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001594/**
1595 * \def POLARSSL_SHA1_C
1596 *
1597 * Enable the SHA1 cryptographic hash algorithm.
1598 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001599 * Module: library/sha1.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001600 * Caller: library/md.c
1601 * library/ssl_cli.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001602 * library/ssl_srv.c
1603 * library/ssl_tls.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001604 * library/x509write_crt.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001605 *
1606 * This module is required for SSL/TLS and SHA1-signed certificates.
1607 */
Paul Bakker40e46942009-01-03 21:51:57 +00001608#define POLARSSL_SHA1_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001609
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001610/**
Paul Bakker9e36f042013-06-30 14:34:05 +02001611 * \def POLARSSL_SHA256_C
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001612 *
1613 * Enable the SHA-224 and SHA-256 cryptographic hash algorithms.
Paul Bakker9e36f042013-06-30 14:34:05 +02001614 * (Used to be POLARSSL_SHA2_C)
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001615 *
Paul Bakker9e36f042013-06-30 14:34:05 +02001616 * Module: library/sha256.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001617 * Caller: library/entropy.c
1618 * library/md.c
1619 * library/ssl_cli.c
1620 * library/ssl_srv.c
1621 * library/ssl_tls.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001622 *
1623 * This module adds support for SHA-224 and SHA-256.
Paul Bakker769075d2012-11-24 11:26:46 +01001624 * This module is required for the SSL/TLS 1.2 PRF function.
Paul Bakker5121ce52009-01-03 21:22:43 +00001625 */
Paul Bakker9e36f042013-06-30 14:34:05 +02001626#define POLARSSL_SHA256_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001627
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001628/**
Paul Bakker9e36f042013-06-30 14:34:05 +02001629 * \def POLARSSL_SHA512_C
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001630 *
1631 * Enable the SHA-384 and SHA-512 cryptographic hash algorithms.
Paul Bakker9e36f042013-06-30 14:34:05 +02001632 * (Used to be POLARSSL_SHA4_C)
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001633 *
Paul Bakker9e36f042013-06-30 14:34:05 +02001634 * Module: library/sha512.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001635 * Caller: library/entropy.c
1636 * library/md.c
1637 * library/ssl_cli.c
1638 * library/ssl_srv.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001639 *
1640 * This module adds support for SHA-384 and SHA-512.
1641 */
Paul Bakker9e36f042013-06-30 14:34:05 +02001642#define POLARSSL_SHA512_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001643
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001644/**
Paul Bakker0a597072012-09-25 21:55:46 +00001645 * \def POLARSSL_SSL_CACHE_C
1646 *
1647 * Enable simple SSL cache implementation.
1648 *
1649 * Module: library/ssl_cache.c
1650 * Caller:
1651 *
1652 * Requires: POLARSSL_SSL_CACHE_C
1653 */
1654#define POLARSSL_SSL_CACHE_C
1655
1656/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001657 * \def POLARSSL_SSL_CLI_C
1658 *
1659 * Enable the SSL/TLS client code.
1660 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001661 * Module: library/ssl_cli.c
1662 * Caller:
1663 *
Paul Bakker5690efc2011-05-26 13:16:06 +00001664 * Requires: POLARSSL_SSL_TLS_C
1665 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001666 * This module is required for SSL/TLS client support.
1667 */
Paul Bakker40e46942009-01-03 21:51:57 +00001668#define POLARSSL_SSL_CLI_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001669
Paul Bakker9a736322012-11-14 12:39:52 +00001670/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001671 * \def POLARSSL_SSL_SRV_C
1672 *
1673 * Enable the SSL/TLS server code.
1674 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001675 * Module: library/ssl_srv.c
1676 * Caller:
1677 *
Paul Bakker5690efc2011-05-26 13:16:06 +00001678 * Requires: POLARSSL_SSL_TLS_C
1679 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001680 * This module is required for SSL/TLS server support.
1681 */
Paul Bakker40e46942009-01-03 21:51:57 +00001682#define POLARSSL_SSL_SRV_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001683
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001684/**
1685 * \def POLARSSL_SSL_TLS_C
1686 *
Paul Bakkere29ab062011-05-18 13:26:54 +00001687 * Enable the generic SSL/TLS code.
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001688 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001689 * Module: library/ssl_tls.c
1690 * Caller: library/ssl_cli.c
1691 * library/ssl_srv.c
1692 *
Manuel Pégourié-Gonnard1a483832013-09-20 12:29:15 +02001693 * Requires: POLARSSL_CIPHER_C, POLARSSL_MD_C
Paul Bakker577e0062013-08-28 11:57:20 +02001694 * and at least one of the POLARSSL_SSL_PROTO_* defines
Paul Bakker5690efc2011-05-26 13:16:06 +00001695 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001696 * This module is required for SSL/TLS.
1697 */
Paul Bakker40e46942009-01-03 21:51:57 +00001698#define POLARSSL_SSL_TLS_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001699
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001700/**
Paul Bakker2466d932013-09-28 14:40:38 +02001701 * \def POLARSSL_THREADING_C
1702 *
1703 * Enable the threading abstraction layer.
1704 * By default PolarSSL assumes it is used in a non-threaded environment or that
1705 * contexts are not shared between threads. If you do intend to use contexts
1706 * between threads, you will need to enable this layer to prevent race
1707 * conditions.
1708 *
1709 * Module: library/threading.c
1710 *
1711 * This allows different threading implementations (self-implemented or
1712 * provided).
1713 *
Paul Bakkera8fd3e32013-12-31 11:54:08 +01001714 * You will have to enable either POLARSSL_THREADING_ALT or
1715 * POLARSSL_THREADING_PTHREAD.
Paul Bakker2466d932013-09-28 14:40:38 +02001716 *
1717 * Enable this layer to allow use of mutexes within PolarSSL
Paul Bakker2466d932013-09-28 14:40:38 +02001718 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +02001719//#define POLARSSL_THREADING_C
Paul Bakker2466d932013-09-28 14:40:38 +02001720
1721/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001722 * \def POLARSSL_TIMING_C
1723 *
1724 * Enable the portable timing interface.
1725 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001726 * Module: library/timing.c
1727 * Caller: library/havege.c
1728 *
1729 * This module is used by the HAVEGE random number generator.
Paul Bakkerecd54fb2013-07-03 14:48:29 +02001730 */
Paul Bakkerdcbfdcc2013-09-10 16:16:50 +02001731#define POLARSSL_TIMING_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001732
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001733/**
1734 * \def POLARSSL_VERSION_C
1735 *
1736 * Enable run-time version information.
1737 *
Paul Bakker0a62cd12011-01-21 11:00:08 +00001738 * Module: library/version.c
1739 *
1740 * This module provides run-time version information.
1741 */
1742#define POLARSSL_VERSION_C
1743
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001744/**
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001745 * \def POLARSSL_X509_USE_C
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001746 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001747 * Enable X.509 core for using certificates.
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001748 *
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001749 * Module: library/x509.c
1750 * Caller: library/x509_crl.c
1751 * library/x509_crt.c
1752 * library/x509_csr.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001753 *
Paul Bakkerc70b9822013-04-07 22:00:46 +02001754 * Requires: POLARSSL_ASN1_PARSE_C, POLARSSL_BIGNUM_C, POLARSSL_OID_C,
Paul Bakker4606c732013-09-15 17:04:23 +02001755 * POLARSSL_PK_PARSE_C
Paul Bakker5690efc2011-05-26 13:16:06 +00001756 *
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001757 * This module is required for the X.509 parsing modules.
Paul Bakker5121ce52009-01-03 21:22:43 +00001758 */
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001759#define POLARSSL_X509_USE_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001760
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001761/**
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001762 * \def POLARSSL_X509_CRT_PARSE_C
Paul Bakkerbdb912d2012-02-13 23:11:30 +00001763 *
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001764 * Enable X.509 certificate parsing.
Paul Bakkerbdb912d2012-02-13 23:11:30 +00001765 *
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001766 * Module: library/x509_crt.c
1767 * Caller: library/ssl_cli.c
1768 * library/ssl_srv.c
1769 * library/ssl_tls.c
1770 *
1771 * Requires: POLARSSL_X509_USE_C
1772 *
1773 * This module is required for X.509 certificate parsing.
1774 */
1775#define POLARSSL_X509_CRT_PARSE_C
1776
1777/**
1778 * \def POLARSSL_X509_CRL_PARSE_C
1779 *
1780 * Enable X.509 CRL parsing.
1781 *
1782 * Module: library/x509_crl.c
1783 * Caller: library/x509_crt.c
1784 *
1785 * Requires: POLARSSL_X509_USE_C
1786 *
1787 * This module is required for X.509 CRL parsing.
1788 */
1789#define POLARSSL_X509_CRL_PARSE_C
1790
1791/**
1792 * \def POLARSSL_X509_CSR_PARSE_C
1793 *
1794 * Enable X.509 Certificate Signing Request (CSR) parsing.
1795 *
1796 * Module: library/x509_csr.c
1797 * Caller: library/x509_crt_write.c
1798 *
1799 * Requires: POLARSSL_X509_USE_C
1800 *
1801 * This module is used for reading X.509 certificate request.
1802 */
1803#define POLARSSL_X509_CSR_PARSE_C
1804
1805/**
1806 * \def POLARSSL_X509_CREATE_C
1807 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001808 * Enable X.509 core for creating certificates.
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001809 *
1810 * Module: library/x509_create.c
Paul Bakkerbdb912d2012-02-13 23:11:30 +00001811 *
Paul Bakker4606c732013-09-15 17:04:23 +02001812 * Requires: POLARSSL_BIGNUM_C, POLARSSL_OID_C, POLARSSL_PK_WRITE_C
Paul Bakkerbdb912d2012-02-13 23:11:30 +00001813 *
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001814 * This module is the basis for creating X.509 certificates and CSRs.
1815 */
1816#define POLARSSL_X509_CREATE_C
1817
1818/**
1819 * \def POLARSSL_X509_CRT_WRITE_C
1820 *
1821 * Enable creating X.509 certificates.
1822 *
1823 * Module: library/x509_crt_write.c
1824 *
1825 * Requires: POLARSSL_CREATE_C
1826 *
1827 * This module is required for X.509 certificate creation.
1828 */
1829#define POLARSSL_X509_CRT_WRITE_C
1830
1831/**
1832 * \def POLARSSL_X509_CSR_WRITE_C
1833 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001834 * Enable creating X.509 Certificate Signing Requests (CSR).
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001835 *
1836 * Module: library/x509_csr_write.c
1837 *
1838 * Requires: POLARSSL_CREATE_C
1839 *
Paul Bakkerbdb912d2012-02-13 23:11:30 +00001840 * This module is required for X.509 certificate request writing.
1841 */
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001842#define POLARSSL_X509_CSR_WRITE_C
Paul Bakkerbdb912d2012-02-13 23:11:30 +00001843
1844/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001845 * \def POLARSSL_XTEA_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001846 *
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001847 * Enable the XTEA block cipher.
1848 *
Paul Bakker7a7c78f2009-01-04 18:15:48 +00001849 * Module: library/xtea.c
1850 * Caller:
1851 */
1852#define POLARSSL_XTEA_C
Manuel Pégourié-Gonnard39d2adb2012-10-31 09:26:55 +01001853
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001854/* \} name SECTION: PolarSSL modules */
Paul Bakker7a7c78f2009-01-04 18:15:48 +00001855
Paul Bakker9bcf16c2013-06-24 19:31:17 +02001856/**
1857 * \name SECTION: Module configuration options
1858 *
1859 * This section allows for the setting of module specific sizes and
1860 * configuration options. The default values are already present in the
1861 * relevant header files and should suffice for the regular use cases.
1862 * Our advice is to enable POLARSSL_CONFIG_OPTIONS and change values here
1863 * only if you have a good reason and know the consequences.
1864 *
1865 * If POLARSSL_CONFIG_OPTIONS is undefined here the options in the module
1866 * header file take precedence.
1867 *
1868 * Please check the respective header file for documentation on these
1869 * parameters (to prevent duplicate documentation).
1870 *
1871 * Uncomment POLARSSL_CONFIG_OPTIONS to enable using the values defined here.
1872 * \{
1873 */
1874//#define POLARSSL_CONFIG_OPTIONS /**< Enable config.h module value configuration */
1875
1876#if defined(POLARSSL_CONFIG_OPTIONS)
1877
1878// MPI / BIGNUM options
1879//
1880#define POLARSSL_MPI_WINDOW_SIZE 6 /**< Maximum windows size used. */
1881#define POLARSSL_MPI_MAX_SIZE 512 /**< Maximum number of bytes for usable MPIs. */
1882
1883// CTR_DRBG options
1884//
Paul Bakkerfb08fd22013-08-27 15:06:26 +02001885#define CTR_DRBG_ENTROPY_LEN 48 /**< Amount of entropy used per seed by default (48 with SHA-512, 32 with SHA-256) */
Paul Bakker9bcf16c2013-06-24 19:31:17 +02001886#define CTR_DRBG_RESEED_INTERVAL 10000 /**< Interval before reseed is performed by default */
1887#define CTR_DRBG_MAX_INPUT 256 /**< Maximum number of additional input bytes */
1888#define CTR_DRBG_MAX_REQUEST 1024 /**< Maximum number of requested bytes per call */
1889#define CTR_DRBG_MAX_SEED_INPUT 384 /**< Maximum size of (re)seed buffer */
1890
Paul Bakkere1b665e2013-12-11 16:02:58 +01001891// ECP options
1892//
1893#define POLARSSL_ECP_MAX_BITS 521 /**< Maximum bit size of groups */
1894#define POLARSSL_ECP_WINDOW_SIZE 6 /**< Maximum window size used */
Manuel Pégourié-Gonnard9e4191c2013-12-30 18:41:16 +01001895#define POLARSSL_ECP_FIXED_POINT_OPTIM 1 /**< Enable fixed-point speed-up */
Paul Bakkere1b665e2013-12-11 16:02:58 +01001896
Paul Bakker9bcf16c2013-06-24 19:31:17 +02001897// Entropy options
1898//
1899#define ENTROPY_MAX_SOURCES 20 /**< Maximum number of sources supported */
1900#define ENTROPY_MAX_GATHER 128 /**< Maximum amount requested from entropy sources */
1901
Paul Bakker6e339b52013-07-03 13:37:05 +02001902// Memory options
1903#define MEMORY_ALIGN_MULTIPLE 4 /**< Align on multiples of this value */
1904#define POLARSSL_MEMORY_STDMALLOC malloc /**< Default allocator to use, can be undefined */
1905#define POLARSSL_MEMORY_STDFREE free /**< Default free to use, can be undefined */
1906
Paul Bakker9bcf16c2013-06-24 19:31:17 +02001907// SSL Cache options
1908//
1909#define SSL_CACHE_DEFAULT_TIMEOUT 86400 /**< 1 day */
1910#define SSL_CACHE_DEFAULT_MAX_ENTRIES 50 /**< Maximum entries in cache */
1911
1912// SSL options
1913//
1914#define SSL_MAX_CONTENT_LEN 16384 /**< Size of the input / output buffer */
Paul Bakker606b4ba2013-08-14 16:52:14 +02001915#define SSL_DEFAULT_TICKET_LIFETIME 86400 /**< Lifetime of session tickets (if enabled) */
Paul Bakker9bcf16c2013-06-24 19:31:17 +02001916
1917#endif /* POLARSSL_CONFIG_OPTIONS */
1918
1919/* \} name */
1920
Paul Bakker7ad00f92013-04-18 23:05:25 +02001921/*
1922 * Sanity checks on defines and dependencies
1923 */
Manuel Pégourié-Gonnard92ac76f2013-12-16 17:12:53 +01001924#if defined(POLARSSL_AESNI_C) && !defined(POLARSSL_HAVE_ASM)
1925#error "POLARSSL_AESNI_C defined, but not all prerequisites"
1926#endif
1927
Manuel Pégourié-Gonnard18dc0e22013-10-27 14:35:02 +01001928#if defined(POLARSSL_CERTS_C) && !defined(POLARSSL_PEM_PARSE_C)
1929#error "POLARSSL_CERTS_C defined, but not all prerequisites"
Paul Bakker7ad00f92013-04-18 23:05:25 +02001930#endif
1931
1932#if defined(POLARSSL_CTR_DRBG_C) && !defined(POLARSSL_AES_C)
1933#error "POLARSSL_CTR_DRBG_C defined, but not all prerequisites"
1934#endif
1935
Manuel Pégourié-Gonnard18dc0e22013-10-27 14:35:02 +01001936#if defined(POLARSSL_DHM_C) && !defined(POLARSSL_BIGNUM_C)
1937#error "POLARSSL_DHM_C defined, but not all prerequisites"
1938#endif
1939
Paul Bakker7ad00f92013-04-18 23:05:25 +02001940#if defined(POLARSSL_ECDH_C) && !defined(POLARSSL_ECP_C)
1941#error "POLARSSL_ECDH_C defined, but not all prerequisites"
1942#endif
1943
Manuel Pégourié-Gonnard4846f5e2013-08-08 14:36:15 +02001944#if defined(POLARSSL_ECDSA_C) && \
1945 ( !defined(POLARSSL_ECP_C) || \
1946 !defined(POLARSSL_ASN1_PARSE_C) || \
1947 !defined(POLARSSL_ASN1_WRITE_C) )
Paul Bakker7ad00f92013-04-18 23:05:25 +02001948#error "POLARSSL_ECDSA_C defined, but not all prerequisites"
1949#endif
1950
Manuel Pégourié-Gonnardc59c9c12013-10-27 14:04:59 +01001951#if defined(POLARSSL_ECP_C) && ( !defined(POLARSSL_BIGNUM_C) || ( \
1952 !defined(POLARSSL_ECP_DP_SECP192R1_ENABLED) && \
1953 !defined(POLARSSL_ECP_DP_SECP224R1_ENABLED) && \
1954 !defined(POLARSSL_ECP_DP_SECP256R1_ENABLED) && \
1955 !defined(POLARSSL_ECP_DP_SECP384R1_ENABLED) && \
1956 !defined(POLARSSL_ECP_DP_SECP521R1_ENABLED) && \
1957 !defined(POLARSSL_ECP_DP_BP256R1_ENABLED) && \
1958 !defined(POLARSSL_ECP_DP_BP384R1_ENABLED) && \
1959 !defined(POLARSSL_ECP_DP_BP512R1_ENABLED) ) )
Paul Bakker7ad00f92013-04-18 23:05:25 +02001960#error "POLARSSL_ECP_C defined, but not all prerequisites"
1961#endif
1962
Paul Bakkerfb08fd22013-08-27 15:06:26 +02001963#if defined(POLARSSL_ENTROPY_C) && (!defined(POLARSSL_SHA512_C) && \
1964 !defined(POLARSSL_SHA256_C))
Paul Bakker7ad00f92013-04-18 23:05:25 +02001965#error "POLARSSL_ENTROPY_C defined, but not all prerequisites"
1966#endif
Paul Bakkerfb08fd22013-08-27 15:06:26 +02001967#if defined(POLARSSL_ENTROPY_C) && defined(POLARSSL_SHA512_C) && \
1968 defined(POLARSSL_CONFIG_OPTIONS) && (CTR_DRBG_ENTROPY_LEN > 64)
1969#error "CTR_DRBG_ENTROPY_LEN value too high"
1970#endif
1971#if defined(POLARSSL_ENTROPY_C) && !defined(POLARSSL_SHA512_C) && \
1972 defined(POLARSSL_CONFIG_OPTIONS) && (CTR_DRBG_ENTROPY_LEN > 32)
1973#error "CTR_DRBG_ENTROPY_LEN value too high"
1974#endif
Paul Bakker7ad00f92013-04-18 23:05:25 +02001975
Manuel Pégourié-Gonnard7bd8a992013-10-24 13:39:39 +02001976#if defined(POLARSSL_GCM_C) && ( \
1977 !defined(POLARSSL_AES_C) && !defined(POLARSSL_CAMELLIA_C) )
Paul Bakker7ad00f92013-04-18 23:05:25 +02001978#error "POLARSSL_GCM_C defined, but not all prerequisites"
1979#endif
1980
Paul Bakkerecd54fb2013-07-03 14:48:29 +02001981#if defined(POLARSSL_HAVEGE_C) && !defined(POLARSSL_TIMING_C)
1982#error "POLARSSL_HAVEGE_C defined, but not all prerequisites"
1983#endif
1984
Manuel Pégourié-Gonnard25781b22013-12-11 16:17:10 +01001985#if defined(POLARSSL_KEY_EXCHANGE_ECDH_ECDSA_ENABLED) && \
1986 ( !defined(POLARSSL_ECDH_C) || !defined(POLARSSL_X509_CRT_PARSE_C) )
1987#error "POLARSSL_KEY_EXCHANGE_ECDH_ECDSA_ENABLED defined, but not all prerequisites"
1988#endif
1989
1990#if defined(POLARSSL_KEY_EXCHANGE_ECDH_RSA_ENABLED) && \
1991 ( !defined(POLARSSL_ECDH_C) || !defined(POLARSSL_X509_CRT_PARSE_C) )
1992#error "POLARSSL_KEY_EXCHANGE_ECDH_RSA_ENABLED defined, but not all prerequisites"
1993#endif
1994
Paul Bakkere07f41d2013-04-19 09:08:57 +02001995#if defined(POLARSSL_KEY_EXCHANGE_DHE_PSK_ENABLED) && !defined(POLARSSL_DHM_C)
1996#error "POLARSSL_KEY_EXCHANGE_DHE_PSK_ENABLED defined, but not all prerequisites"
1997#endif
1998
Manuel Pégourié-Gonnard3ce3bbd2013-10-11 16:53:50 +02001999#if defined(POLARSSL_KEY_EXCHANGE_ECDHE_PSK_ENABLED) && \
2000 !defined(POLARSSL_ECDH_C)
2001#error "POLARSSL_KEY_EXCHANGE_ECDHE_PSK_ENABLED defined, but not all prerequisites"
2002#endif
2003
Paul Bakkere07f41d2013-04-19 09:08:57 +02002004#if defined(POLARSSL_KEY_EXCHANGE_DHE_RSA_ENABLED) && \
2005 ( !defined(POLARSSL_DHM_C) || !defined(POLARSSL_RSA_C) || \
Manuel Pégourié-Gonnardcbf3ef32013-09-23 12:20:02 +02002006 !defined(POLARSSL_X509_CRT_PARSE_C) || !defined(POLARSSL_PKCS1_V15) )
Paul Bakkere07f41d2013-04-19 09:08:57 +02002007#error "POLARSSL_KEY_EXCHANGE_DHE_RSA_ENABLED defined, but not all prerequisites"
2008#endif
2009
2010#if defined(POLARSSL_KEY_EXCHANGE_ECDHE_RSA_ENABLED) && \
2011 ( !defined(POLARSSL_ECDH_C) || !defined(POLARSSL_RSA_C) || \
Manuel Pégourié-Gonnardcbf3ef32013-09-23 12:20:02 +02002012 !defined(POLARSSL_X509_CRT_PARSE_C) || !defined(POLARSSL_PKCS1_V15) )
Paul Bakkere07f41d2013-04-19 09:08:57 +02002013#error "POLARSSL_KEY_EXCHANGE_ECDHE_RSA_ENABLED defined, but not all prerequisites"
2014#endif
2015
Manuel Pégourié-Gonnard32ea60a2013-08-17 17:39:04 +02002016#if defined(POLARSSL_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED) && \
2017 ( !defined(POLARSSL_ECDH_C) || !defined(POLARSSL_ECDSA_C) || \
Manuel Pégourié-Gonnardcbf3ef32013-09-23 12:20:02 +02002018 !defined(POLARSSL_X509_CRT_PARSE_C) )
Manuel Pégourié-Gonnard32ea60a2013-08-17 17:39:04 +02002019#error "POLARSSL_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED defined, but not all prerequisites"
2020#endif
2021
Paul Bakkere07f41d2013-04-19 09:08:57 +02002022#if defined(POLARSSL_KEY_EXCHANGE_RSA_PSK_ENABLED) && \
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002023 ( !defined(POLARSSL_RSA_C) || !defined(POLARSSL_X509_CRT_PARSE_C) ||\
Manuel Pégourié-Gonnardcbf3ef32013-09-23 12:20:02 +02002024 !defined(POLARSSL_PKCS1_V15) )
Paul Bakkere07f41d2013-04-19 09:08:57 +02002025#error "POLARSSL_KEY_EXCHANGE_RSA_PSK_ENABLED defined, but not all prerequisites"
2026#endif
2027
2028#if defined(POLARSSL_KEY_EXCHANGE_RSA_ENABLED) && \
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002029 ( !defined(POLARSSL_RSA_C) || !defined(POLARSSL_X509_CRT_PARSE_C) ||\
Manuel Pégourié-Gonnardcbf3ef32013-09-23 12:20:02 +02002030 !defined(POLARSSL_PKCS1_V15) )
Paul Bakkere07f41d2013-04-19 09:08:57 +02002031#error "POLARSSL_KEY_EXCHANGE_RSA_ENABLED defined, but not all prerequisites"
2032#endif
2033
Paul Bakker6e339b52013-07-03 13:37:05 +02002034#if defined(POLARSSL_MEMORY_BUFFER_ALLOC_C) && !defined(POLARSSL_MEMORY_C)
2035#error "POLARSSL_MEMORY_BUFFER_ALLOC_C defined, but not all prerequisites"
2036#endif
2037
Manuel Pégourié-Gonnard92ac76f2013-12-16 17:12:53 +01002038#if defined(POLARSSL_PADLOCK_C) && !defined(POLARSSL_HAVE_ASM)
2039#error "POLARSSL_PADLOCK_C defined, but not all prerequisites"
2040#endif
2041
Paul Bakker7ad00f92013-04-18 23:05:25 +02002042#if defined(POLARSSL_PBKDF2_C) && !defined(POLARSSL_MD_C)
2043#error "POLARSSL_PBKDF2_C defined, but not all prerequisites"
2044#endif
2045
Paul Bakkercff68422013-09-15 20:43:33 +02002046#if defined(POLARSSL_PEM_PARSE_C) && !defined(POLARSSL_BASE64_C)
2047#error "POLARSSL_PEM_PARSE_C defined, but not all prerequisites"
2048#endif
2049
2050#if defined(POLARSSL_PEM_WRITE_C) && !defined(POLARSSL_BASE64_C)
2051#error "POLARSSL_PEM_WRITE_C defined, but not all prerequisites"
Paul Bakker7ad00f92013-04-18 23:05:25 +02002052#endif
2053
Paul Bakker4606c732013-09-15 17:04:23 +02002054#if defined(POLARSSL_PK_PARSE_C) && !defined(POLARSSL_PK_C)
2055#error "POLARSSL_PK_PARSE_C defined, but not all prerequisites"
2056#endif
2057
2058#if defined(POLARSSL_PK_WRITE_C) && !defined(POLARSSL_PK_C)
2059#error "POLARSSL_PK_WRITE_C defined, but not all prerequisites"
2060#endif
2061
Manuel Pégourié-Gonnard51be5592013-08-22 13:35:53 +02002062#if defined(POLARSSL_PKCS11_C) && !defined(POLARSSL_PK_C)
Paul Bakker7ad00f92013-04-18 23:05:25 +02002063#error "POLARSSL_PKCS11_C defined, but not all prerequisites"
2064#endif
2065
2066#if defined(POLARSSL_RSA_C) && ( !defined(POLARSSL_BIGNUM_C) || \
2067 !defined(POLARSSL_OID_C) )
2068#error "POLARSSL_RSA_C defined, but not all prerequisites"
2069#endif
2070
Manuel Pégourié-Gonnard7c3291e2013-10-27 14:29:51 +01002071#if defined(POLARSSL_SSL_PROTO_SSL3) && ( !defined(POLARSSL_MD5_C) || \
2072 !defined(POLARSSL_SHA1_C) )
2073#error "POLARSSL_SSL_PROTO_SSL3 defined, but not all prerequisites"
2074#endif
2075
2076#if defined(POLARSSL_SSL_PROTO_TLS1) && ( !defined(POLARSSL_MD5_C) || \
2077 !defined(POLARSSL_SHA1_C) )
2078#error "POLARSSL_SSL_PROTO_TLS1 defined, but not all prerequisites"
2079#endif
2080
2081#if defined(POLARSSL_SSL_PROTO_TLS1_1) && ( !defined(POLARSSL_MD5_C) || \
2082 !defined(POLARSSL_SHA1_C) )
2083#error "POLARSSL_SSL_PROTO_TLS1_1 defined, but not all prerequisites"
2084#endif
2085
2086#if defined(POLARSSL_SSL_PROTO_TLS1_2) && ( !defined(POLARSSL_SHA1_C) && \
2087 !defined(POLARSSL_SHA256_C) && !defined(POLARSSL_SHA512_C) )
2088#error "POLARSSL_SSL_PROTO_TLS1_2 defined, but not all prerequisites"
2089#endif
2090
Paul Bakker7ad00f92013-04-18 23:05:25 +02002091#if defined(POLARSSL_SSL_CLI_C) && !defined(POLARSSL_SSL_TLS_C)
2092#error "POLARSSL_SSL_CLI_C defined, but not all prerequisites"
2093#endif
2094
Paul Bakker577e0062013-08-28 11:57:20 +02002095#if defined(POLARSSL_SSL_TLS_C) && ( !defined(POLARSSL_CIPHER_C) || \
Manuel Pégourié-Gonnard1a483832013-09-20 12:29:15 +02002096 !defined(POLARSSL_MD_C) )
Paul Bakker7ad00f92013-04-18 23:05:25 +02002097#error "POLARSSL_SSL_TLS_C defined, but not all prerequisites"
2098#endif
2099
2100#if defined(POLARSSL_SSL_SRV_C) && !defined(POLARSSL_SSL_TLS_C)
2101#error "POLARSSL_SSL_SRV_C defined, but not all prerequisites"
2102#endif
2103
Paul Bakkerd2f068e2013-08-27 21:19:20 +02002104#if defined(POLARSSL_SSL_TLS_C) && (!defined(POLARSSL_SSL_PROTO_SSL3) && \
2105 !defined(POLARSSL_SSL_PROTO_TLS1) && !defined(POLARSSL_SSL_PROTO_TLS1_1) && \
2106 !defined(POLARSSL_SSL_PROTO_TLS1_2))
2107#error "POLARSSL_SSL_TLS_C defined, but no protocols are active"
2108#endif
2109
2110#if defined(POLARSSL_SSL_TLS_C) && (defined(POLARSSL_SSL_PROTO_SSL3) && \
2111 defined(POLARSSL_SSL_PROTO_TLS1_1) && !defined(POLARSSL_SSL_PROTO_TLS1))
2112#error "Illegal protocol selection"
2113#endif
2114
2115#if defined(POLARSSL_SSL_TLS_C) && (defined(POLARSSL_SSL_PROTO_TLS1) && \
2116 defined(POLARSSL_SSL_PROTO_TLS1_2) && !defined(POLARSSL_SSL_PROTO_TLS1_1))
2117#error "Illegal protocol selection"
2118#endif
2119
2120#if defined(POLARSSL_SSL_TLS_C) && (defined(POLARSSL_SSL_PROTO_SSL3) && \
2121 defined(POLARSSL_SSL_PROTO_TLS1_2) && (!defined(POLARSSL_SSL_PROTO_TLS1) || \
2122 !defined(POLARSSL_SSL_PROTO_TLS1_1)))
2123#error "Illegal protocol selection"
2124#endif
2125
Paul Bakker59da0a42013-08-19 13:27:17 +02002126#if defined(POLARSSL_SSL_SESSION_TICKETS) && defined(POLARSSL_SSL_TLS_C) && \
Manuel Pégourié-Gonnard92cb1d32013-09-13 16:24:20 +02002127 ( !defined(POLARSSL_AES_C) || !defined(POLARSSL_SHA256_C) || \
2128 !defined(POLARSSL_CIPHER_MODE_CBC) )
Paul Bakker59da0a42013-08-19 13:27:17 +02002129#error "POLARSSL_SSL_SESSION_TICKETS_C defined, but not all prerequisites"
2130#endif
2131
Paul Bakker2466d932013-09-28 14:40:38 +02002132#if defined(POLARSSL_THREADING_PTHREAD)
2133#if !defined(POLARSSL_THREADING_C) || defined(POLARSSL_THREADING_IMPL)
2134#error "POLARSSL_THREADING_PTHREAD defined, but not all prerequisites"
2135#endif
2136#define POLARSSL_THREADING_IMPL
2137#endif
2138
2139#if defined(POLARSSL_THREADING_ALT)
2140#if !defined(POLARSSL_THREADING_C) || defined(POLARSSL_THREADING_IMPL)
2141#error "POLARSSL_THREADING_ALT defined, but not all prerequisites"
2142#endif
2143#define POLARSSL_THREADING_IMPL
2144#endif
2145
2146#if defined(POLARSSL_THREADING_C) && !defined(POLARSSL_THREADING_IMPL)
2147#error "POLARSSL_THREADING_C defined, single threading implementation required"
2148#endif
2149#undef POLARSSL_THREADING_IMPL
2150
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002151#if defined(POLARSSL_X509_USE_C) && ( !defined(POLARSSL_BIGNUM_C) || \
Paul Bakker7ad00f92013-04-18 23:05:25 +02002152 !defined(POLARSSL_OID_C) || !defined(POLARSSL_ASN1_PARSE_C) || \
Paul Bakker4606c732013-09-15 17:04:23 +02002153 !defined(POLARSSL_PK_PARSE_C) )
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002154#error "POLARSSL_X509_USE_C defined, but not all prerequisites"
Paul Bakker7ad00f92013-04-18 23:05:25 +02002155#endif
2156
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002157#if defined(POLARSSL_X509_CREATE_C) && ( !defined(POLARSSL_BIGNUM_C) || \
2158 !defined(POLARSSL_OID_C) || !defined(POLARSSL_ASN1_WRITE_C) || \
2159 !defined(POLARSSL_PK_WRITE_C) )
2160#error "POLARSSL_X509_CREATE_C defined, but not all prerequisites"
2161#endif
2162
2163#if defined(POLARSSL_X509_CRT_PARSE_C) && ( !defined(POLARSSL_X509_USE_C) )
2164#error "POLARSSL_X509_CRT_PARSE_C defined, but not all prerequisites"
2165#endif
2166
2167#if defined(POLARSSL_X509_CRL_PARSE_C) && ( !defined(POLARSSL_X509_USE_C) )
2168#error "POLARSSL_X509_CRL_PARSE_C defined, but not all prerequisites"
2169#endif
2170
2171#if defined(POLARSSL_X509_CSR_PARSE_C) && ( !defined(POLARSSL_X509_USE_C) )
2172#error "POLARSSL_X509_CSR_PARSE_C defined, but not all prerequisites"
2173#endif
2174
2175#if defined(POLARSSL_X509_CRT_WRITE_C) && ( !defined(POLARSSL_X509_CREATE_C) )
2176#error "POLARSSL_X509_CRT_WRITE_C defined, but not all prerequisites"
2177#endif
2178
2179#if defined(POLARSSL_X509_CSR_WRITE_C) && ( !defined(POLARSSL_X509_CREATE_C) )
2180#error "POLARSSL_X509_CSR_WRITE_C defined, but not all prerequisites"
Paul Bakker7ad00f92013-04-18 23:05:25 +02002181#endif
2182
Paul Bakker5121ce52009-01-03 21:22:43 +00002183#endif /* config.h */