blob: cf7edf0c900ccd310c2c11cad4717d0232fbff8c [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
151//#define POLARSSL_SHA1_ALT
152//#define POLARSSL_SHA256_ALT
153//#define POLARSSL_SHA512_ALT
Paul Bakker90995b52013-06-24 19:20:35 +0200154
155/**
Paul Bakker15566e42011-04-24 21:19:15 +0000156 * \def POLARSSL_AES_ROM_TABLES
157 *
158 * Store the AES tables in ROM.
159 *
160 * Uncomment this macro to store the AES tables in ROM.
161 *
Paul Bakker15566e42011-04-24 21:19:15 +0000162 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200163//#define POLARSSL_AES_ROM_TABLES
Paul Bakker15566e42011-04-24 21:19:15 +0000164
165/**
Manuel Pégourié-Gonnardf7dc3782013-09-13 14:10:44 +0200166 * \def POLARSSL_CIPHER_MODE_CBC
167 *
168 * Enable Cipher Block Chaining mode (CBC) for symmetric ciphers.
169 */
170#define POLARSSL_CIPHER_MODE_CBC
171
172/**
Paul Bakkerb6ecaf52011-04-19 14:29:23 +0000173 * \def POLARSSL_CIPHER_MODE_CFB
174 *
175 * Enable Cipher Feedback mode (CFB) for symmetric ciphers.
176 */
177#define POLARSSL_CIPHER_MODE_CFB
178
179/**
180 * \def POLARSSL_CIPHER_MODE_CTR
181 *
182 * Enable Counter Block Cipher mode (CTR) for symmetric ciphers.
183 */
184#define POLARSSL_CIPHER_MODE_CTR
185
186/**
Paul Bakkerfab5c822012-02-06 16:45:10 +0000187 * \def POLARSSL_CIPHER_NULL_CIPHER
188 *
189 * Enable NULL cipher.
190 * Warning: Only do so when you know what you are doing. This allows for
191 * encryption or channels without any security!
192 *
193 * Requires POLARSSL_ENABLE_WEAK_CIPHERSUITES as well to enable
194 * the following ciphersuites:
Manuel Pégourié-Gonnard25781b22013-12-11 16:17:10 +0100195 * TLS_ECDH_ECDSA_WITH_NULL_SHA
196 * TLS_ECDH_RSA_WITH_NULL_SHA
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200197 * TLS_ECDHE_ECDSA_WITH_NULL_SHA
Paul Bakker41c83d32013-03-20 14:39:14 +0100198 * TLS_ECDHE_RSA_WITH_NULL_SHA
Manuel Pégourié-Gonnard225d6aa2013-10-11 19:07:56 +0200199 * TLS_ECDHE_PSK_WITH_NULL_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200200 * TLS_ECDHE_PSK_WITH_NULL_SHA256
201 * TLS_ECDHE_PSK_WITH_NULL_SHA
202 * TLS_DHE_PSK_WITH_NULL_SHA384
203 * TLS_DHE_PSK_WITH_NULL_SHA256
204 * TLS_DHE_PSK_WITH_NULL_SHA
205 * TLS_RSA_WITH_NULL_SHA256
206 * TLS_RSA_WITH_NULL_SHA
207 * TLS_RSA_WITH_NULL_MD5
208 * TLS_RSA_PSK_WITH_NULL_SHA384
209 * TLS_RSA_PSK_WITH_NULL_SHA256
210 * TLS_RSA_PSK_WITH_NULL_SHA
211 * TLS_PSK_WITH_NULL_SHA384
212 * TLS_PSK_WITH_NULL_SHA256
213 * TLS_PSK_WITH_NULL_SHA
Paul Bakkerfab5c822012-02-06 16:45:10 +0000214 *
215 * Uncomment this macro to enable the NULL cipher and ciphersuites
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200216#define POLARSSL_CIPHER_NULL_CIPHER
Paul Bakkerfab5c822012-02-06 16:45:10 +0000217 */
218
219/**
Paul Bakker48e93c82013-08-14 12:21:18 +0200220 * \def POLARSSL_CIPHER_PADDING_XXX
221 *
222 * Uncomment or comment macros to add support for specific padding modes
223 * in the cipher layer with cipher modes that support padding (e.g. CBC)
224 *
225 * If you disable all padding modes, only full blocks can be used with CBC.
226 *
227 * Enable padding modes in the cipher layer.
228 */
229#define POLARSSL_CIPHER_PADDING_PKCS7
230#define POLARSSL_CIPHER_PADDING_ONE_AND_ZEROS
231#define POLARSSL_CIPHER_PADDING_ZEROS_AND_LEN
232#define POLARSSL_CIPHER_PADDING_ZEROS
233
234/**
Paul Bakkerfab5c822012-02-06 16:45:10 +0000235 * \def POLARSSL_ENABLE_WEAK_CIPHERSUITES
236 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200237 * Enable weak ciphersuites in SSL / TLS.
Paul Bakkerfab5c822012-02-06 16:45:10 +0000238 * Warning: Only do so when you know what you are doing. This allows for
Paul Bakker9a736322012-11-14 12:39:52 +0000239 * channels with virtually no security at all!
Paul Bakkerfab5c822012-02-06 16:45:10 +0000240 *
241 * This enables the following ciphersuites:
Paul Bakker645ce3a2012-10-31 12:32:41 +0000242 * TLS_RSA_WITH_DES_CBC_SHA
243 * TLS_DHE_RSA_WITH_DES_CBC_SHA
Paul Bakkerfab5c822012-02-06 16:45:10 +0000244 *
245 * Uncomment this macro to enable weak ciphersuites
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200246#define POLARSSL_ENABLE_WEAK_CIPHERSUITES
Paul Bakkerfab5c822012-02-06 16:45:10 +0000247 */
248
249/**
Paul Bakker5dc6b5f2013-06-29 23:26:34 +0200250 * \def POLARSSL_ECP_XXXX_ENABLED
251 *
252 * Enables specific curves within the Elliptic Curve module.
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200253 * By default all supported curves are enabled.
Paul Bakker5dc6b5f2013-06-29 23:26:34 +0200254 *
255 * Comment macros to disable the curve and functions for it
256 */
257#define POLARSSL_ECP_DP_SECP192R1_ENABLED
258#define POLARSSL_ECP_DP_SECP224R1_ENABLED
259#define POLARSSL_ECP_DP_SECP256R1_ENABLED
260#define POLARSSL_ECP_DP_SECP384R1_ENABLED
261#define POLARSSL_ECP_DP_SECP521R1_ENABLED
Manuel Pégourié-Gonnard8195c1a2013-10-07 19:40:41 +0200262#define POLARSSL_ECP_DP_BP256R1_ENABLED
263#define POLARSSL_ECP_DP_BP384R1_ENABLED
264#define POLARSSL_ECP_DP_BP512R1_ENABLED
Manuel Pégourié-Gonnard66153662013-12-03 14:12:26 +0100265//#define POLARSSL_ECP_DP_M221_ENABLED // Not implemented yet!
266#define POLARSSL_ECP_DP_M255_ENABLED
267//#define POLARSSL_ECP_DP_M383_ENABLED // Not implemented yet!
268//#define POLARSSL_ECP_DP_M511_ENABLED // Not implemented yet!
Paul Bakker5dc6b5f2013-06-29 23:26:34 +0200269
270/**
Manuel Pégourié-Gonnardc04c5302013-10-23 16:11:52 +0200271 * \def POLARSSL_ECP_NIST_OPTIM
272 *
273 * Enable specific 'modulo p' routines for each NIST prime.
274 * Depending on the prime and architecture, makes operations 4 to 8 times
275 * faster on the corresponding curve.
276 *
277 * Comment this macro to disable NIST curves optimisation.
278 */
279#define POLARSSL_ECP_NIST_OPTIM
280
281/**
Manuel Pégourié-Gonnard461d4162014-01-06 10:16:28 +0100282 * \def POLARSSL_ECDSA_DETERMINISTIC
283 *
284 * Enable deterministic ECDSA (RFC 6979).
285 * Standard ECDSA is "fragile" in the sense that lack of entropy when signing
286 * may result in a compromise of the long-term signing key. This is avoided by
287 * the deterministic variant.
288 *
Manuel Pégourié-Gonnard5b1a5732014-01-07 16:46:17 +0100289 * Requires: POLARSSL_MD_C
290 *
Manuel Pégourié-Gonnard461d4162014-01-06 10:16:28 +0100291 * Comment this macro to disable deterministic ECDSA.
292 */
293#define POLARSSL_ECDSA_DETERMINISTIC
294
295/**
Paul Bakkerd4a56ec2013-04-16 18:05:29 +0200296 * \def POLARSSL_KEY_EXCHANGE_PSK_ENABLED
297 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200298 * Enable the PSK based ciphersuite modes in SSL / TLS.
Paul Bakkerd4a56ec2013-04-16 18:05:29 +0200299 *
Paul Bakkere07f41d2013-04-19 09:08:57 +0200300 * This enables the following ciphersuites (if other requisites are
301 * enabled as well):
Paul Bakker45bda902013-04-19 22:28:21 +0200302 * TLS_PSK_WITH_AES_256_GCM_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200303 * TLS_PSK_WITH_AES_256_CBC_SHA384
304 * TLS_PSK_WITH_AES_256_CBC_SHA
305 * TLS_PSK_WITH_CAMELLIA_256_GCM_SHA384
306 * TLS_PSK_WITH_CAMELLIA_256_CBC_SHA384
307 * TLS_PSK_WITH_AES_128_GCM_SHA256
308 * TLS_PSK_WITH_AES_128_CBC_SHA256
309 * TLS_PSK_WITH_AES_128_CBC_SHA
310 * TLS_PSK_WITH_CAMELLIA_128_GCM_SHA256
311 * TLS_PSK_WITH_CAMELLIA_128_CBC_SHA256
312 * TLS_PSK_WITH_3DES_EDE_CBC_SHA
313 * TLS_PSK_WITH_RC4_128_SHA
Paul Bakkerd4a56ec2013-04-16 18:05:29 +0200314 */
315#define POLARSSL_KEY_EXCHANGE_PSK_ENABLED
316
317/**
Paul Bakkere07f41d2013-04-19 09:08:57 +0200318 * \def POLARSSL_KEY_EXCHANGE_DHE_PSK_ENABLED
319 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200320 * Enable the DHE-PSK based ciphersuite modes in SSL / TLS.
Paul Bakkere07f41d2013-04-19 09:08:57 +0200321 *
322 * Requires: POLARSSL_DHM_C
323 *
324 * This enables the following ciphersuites (if other requisites are
325 * enabled as well):
Paul Bakker45bda902013-04-19 22:28:21 +0200326 * TLS_DHE_PSK_WITH_AES_256_GCM_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200327 * TLS_DHE_PSK_WITH_AES_256_CBC_SHA384
328 * TLS_DHE_PSK_WITH_AES_256_CBC_SHA
329 * TLS_DHE_PSK_WITH_CAMELLIA_256_GCM_SHA384
330 * TLS_DHE_PSK_WITH_CAMELLIA_256_CBC_SHA384
331 * TLS_DHE_PSK_WITH_AES_128_GCM_SHA256
332 * TLS_DHE_PSK_WITH_AES_128_CBC_SHA256
333 * TLS_DHE_PSK_WITH_AES_128_CBC_SHA
334 * TLS_DHE_PSK_WITH_CAMELLIA_128_GCM_SHA256
335 * TLS_DHE_PSK_WITH_CAMELLIA_128_CBC_SHA256
336 * TLS_DHE_PSK_WITH_3DES_EDE_CBC_SHA
337 * TLS_DHE_PSK_WITH_RC4_128_SHA
Paul Bakkere07f41d2013-04-19 09:08:57 +0200338 */
Paul Bakker48f7a5d2013-04-19 14:30:58 +0200339#define POLARSSL_KEY_EXCHANGE_DHE_PSK_ENABLED
Paul Bakkere07f41d2013-04-19 09:08:57 +0200340
341/**
Manuel Pégourié-Gonnard3ce3bbd2013-10-11 16:53:50 +0200342 * \def POLARSSL_KEY_EXCHANGE_ECDHE_PSK_ENABLED
343 *
344 * Enable the ECDHE-PSK based ciphersuite modes in SSL / TLS.
345 *
346 * Requires: POLARSSL_ECDH_C
347 *
348 * This enables the following ciphersuites (if other requisites are
349 * enabled as well):
Manuel Pégourié-Gonnard225d6aa2013-10-11 19:07:56 +0200350 * TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200351 * TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA
Manuel Pégourié-Gonnard225d6aa2013-10-11 19:07:56 +0200352 * TLS_ECDHE_PSK_WITH_CAMELLIA_256_CBC_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200353 * TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA256
354 * TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA
355 * TLS_ECDHE_PSK_WITH_CAMELLIA_128_CBC_SHA256
356 * TLS_ECDHE_PSK_WITH_3DES_EDE_CBC_SHA
357 * TLS_ECDHE_PSK_WITH_RC4_128_SHA
Manuel Pégourié-Gonnard3ce3bbd2013-10-11 16:53:50 +0200358 */
359#define POLARSSL_KEY_EXCHANGE_ECDHE_PSK_ENABLED
360
361/**
Paul Bakkere07f41d2013-04-19 09:08:57 +0200362 * \def POLARSSL_KEY_EXCHANGE_RSA_PSK_ENABLED
363 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200364 * Enable the RSA-PSK based ciphersuite modes in SSL / TLS.
Manuel Pégourié-Gonnard0fae60b2013-10-14 17:39:48 +0200365 *
Manuel Pégourié-Gonnard1032c1d2013-09-18 17:18:34 +0200366 * Requires: POLARSSL_RSA_C, POLARSSL_PKCS1_V15,
Manuel Pégourié-Gonnardcbf3ef32013-09-23 12:20:02 +0200367 * POLARSSL_X509_CRT_PARSE_C
Paul Bakkere07f41d2013-04-19 09:08:57 +0200368 *
369 * This enables the following ciphersuites (if other requisites are
370 * enabled as well):
Paul Bakker45bda902013-04-19 22:28:21 +0200371 * TLS_RSA_PSK_WITH_AES_256_GCM_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200372 * TLS_RSA_PSK_WITH_AES_256_CBC_SHA384
373 * TLS_RSA_PSK_WITH_AES_256_CBC_SHA
374 * TLS_RSA_PSK_WITH_CAMELLIA_256_GCM_SHA384
375 * TLS_RSA_PSK_WITH_CAMELLIA_256_CBC_SHA384
376 * TLS_RSA_PSK_WITH_AES_128_GCM_SHA256
377 * TLS_RSA_PSK_WITH_AES_128_CBC_SHA256
378 * TLS_RSA_PSK_WITH_AES_128_CBC_SHA
379 * TLS_RSA_PSK_WITH_CAMELLIA_128_GCM_SHA256
380 * TLS_RSA_PSK_WITH_CAMELLIA_128_CBC_SHA256
381 * TLS_RSA_PSK_WITH_3DES_EDE_CBC_SHA
382 * TLS_RSA_PSK_WITH_RC4_128_SHA
Paul Bakkere07f41d2013-04-19 09:08:57 +0200383 */
Manuel Pégourié-Gonnard0fae60b2013-10-14 17:39:48 +0200384#define POLARSSL_KEY_EXCHANGE_RSA_PSK_ENABLED
Paul Bakkere07f41d2013-04-19 09:08:57 +0200385
386/**
387 * \def POLARSSL_KEY_EXCHANGE_RSA_ENABLED
388 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200389 * Enable the RSA-only based ciphersuite modes in SSL / TLS.
Paul Bakkere07f41d2013-04-19 09:08:57 +0200390 *
Manuel Pégourié-Gonnard1032c1d2013-09-18 17:18:34 +0200391 * Requires: POLARSSL_RSA_C, POLARSSL_PKCS1_V15,
Manuel Pégourié-Gonnardcbf3ef32013-09-23 12:20:02 +0200392 * POLARSSL_X509_CRT_PARSE_C
Paul Bakkere07f41d2013-04-19 09:08:57 +0200393 *
394 * This enables the following ciphersuites (if other requisites are
395 * enabled as well):
Paul Bakkere07f41d2013-04-19 09:08:57 +0200396 * TLS_RSA_WITH_AES_256_GCM_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200397 * TLS_RSA_WITH_AES_256_CBC_SHA256
398 * TLS_RSA_WITH_AES_256_CBC_SHA
399 * TLS_RSA_WITH_CAMELLIA_256_GCM_SHA384
Paul Bakkere07f41d2013-04-19 09:08:57 +0200400 * TLS_RSA_WITH_CAMELLIA_256_CBC_SHA256
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200401 * TLS_RSA_WITH_CAMELLIA_256_CBC_SHA
402 * TLS_RSA_WITH_AES_128_GCM_SHA256
403 * TLS_RSA_WITH_AES_128_CBC_SHA256
404 * TLS_RSA_WITH_AES_128_CBC_SHA
405 * TLS_RSA_WITH_CAMELLIA_128_GCM_SHA256
406 * TLS_RSA_WITH_CAMELLIA_128_CBC_SHA256
407 * TLS_RSA_WITH_CAMELLIA_128_CBC_SHA
Paul Bakkere07f41d2013-04-19 09:08:57 +0200408 * TLS_RSA_WITH_3DES_EDE_CBC_SHA
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200409 * TLS_RSA_WITH_RC4_128_SHA
410 * TLS_RSA_WITH_RC4_128_MD5
Paul Bakkere07f41d2013-04-19 09:08:57 +0200411 */
412#define POLARSSL_KEY_EXCHANGE_RSA_ENABLED
413
414/**
415 * \def POLARSSL_KEY_EXCHANGE_DHE_RSA_ENABLED
416 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200417 * Enable the DHE-RSA based ciphersuite modes in SSL / TLS.
Paul Bakkere07f41d2013-04-19 09:08:57 +0200418 *
Manuel Pégourié-Gonnard1032c1d2013-09-18 17:18:34 +0200419 * Requires: POLARSSL_DHM_C, POLARSSL_RSA_C, POLARSSL_PKCS1_V15,
Manuel Pégourié-Gonnardcbf3ef32013-09-23 12:20:02 +0200420 * POLARSSL_X509_CRT_PARSE_C
Paul Bakkere07f41d2013-04-19 09:08:57 +0200421 *
422 * This enables the following ciphersuites (if other requisites are
423 * enabled as well):
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200424 * TLS_DHE_RSA_WITH_AES_256_GCM_SHA384
Paul Bakkere07f41d2013-04-19 09:08:57 +0200425 * TLS_DHE_RSA_WITH_AES_256_CBC_SHA256
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200426 * TLS_DHE_RSA_WITH_AES_256_CBC_SHA
427 * TLS_DHE_RSA_WITH_CAMELLIA_256_GCM_SHA384
Paul Bakkere07f41d2013-04-19 09:08:57 +0200428 * TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA256
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200429 * TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA
430 * TLS_DHE_RSA_WITH_AES_128_GCM_SHA256
431 * TLS_DHE_RSA_WITH_AES_128_CBC_SHA256
432 * TLS_DHE_RSA_WITH_AES_128_CBC_SHA
433 * TLS_DHE_RSA_WITH_CAMELLIA_128_GCM_SHA256
434 * TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA256
435 * TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA
Paul Bakkere07f41d2013-04-19 09:08:57 +0200436 * TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA
437 */
438#define POLARSSL_KEY_EXCHANGE_DHE_RSA_ENABLED
439
440/**
441 * \def POLARSSL_KEY_EXCHANGE_ECDHE_RSA_ENABLED
442 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200443 * Enable the ECDHE-RSA based ciphersuite modes in SSL / TLS.
Paul Bakkere07f41d2013-04-19 09:08:57 +0200444 *
Manuel Pégourié-Gonnard1032c1d2013-09-18 17:18:34 +0200445 * Requires: POLARSSL_ECDH_C, POLARSSL_RSA_C, POLARSSL_PKCS1_V15,
Manuel Pégourié-Gonnardcbf3ef32013-09-23 12:20:02 +0200446 * POLARSSL_X509_CRT_PARSE_C
Paul Bakkere07f41d2013-04-19 09:08:57 +0200447 *
448 * This enables the following ciphersuites (if other requisites are
449 * enabled as well):
Paul Bakkere07f41d2013-04-19 09:08:57 +0200450 * TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200451 * TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384
452 * TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA
453 * TLS_ECDHE_RSA_WITH_CAMELLIA_256_GCM_SHA384
Paul Bakkere07f41d2013-04-19 09:08:57 +0200454 * TLS_ECDHE_RSA_WITH_CAMELLIA_256_CBC_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200455 * TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
456 * TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256
457 * TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA
458 * TLS_ECDHE_RSA_WITH_CAMELLIA_128_GCM_SHA256
459 * TLS_ECDHE_RSA_WITH_CAMELLIA_128_CBC_SHA256
460 * TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA
461 * TLS_ECDHE_RSA_WITH_RC4_128_SHA
Paul Bakkere07f41d2013-04-19 09:08:57 +0200462 */
463#define POLARSSL_KEY_EXCHANGE_ECDHE_RSA_ENABLED
464
465/**
Manuel Pégourié-Gonnard32ea60a2013-08-17 17:39:04 +0200466 * \def POLARSSL_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED
467 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200468 * Enable the ECDHE-ECDSA based ciphersuite modes in SSL / TLS.
Manuel Pégourié-Gonnard32ea60a2013-08-17 17:39:04 +0200469 *
Manuel Pégourié-Gonnard1032c1d2013-09-18 17:18:34 +0200470 * Requires: POLARSSL_ECDH_C, POLARSSL_ECDSA_C, POLARSSL_X509_CRT_PARSE_C,
Manuel Pégourié-Gonnard32ea60a2013-08-17 17:39:04 +0200471 *
472 * This enables the following ciphersuites (if other requisites are
473 * enabled as well):
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200474 * TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384
475 * TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384
476 * TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA
477 * TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_GCM_SHA384
478 * TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_CBC_SHA384
479 * TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
480 * TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256
481 * TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA
482 * TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_GCM_SHA256
483 * TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_CBC_SHA256
484 * TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA
485 * TLS_ECDHE_ECDSA_WITH_RC4_128_SHA
Manuel Pégourié-Gonnard32ea60a2013-08-17 17:39:04 +0200486 */
487#define POLARSSL_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED
488
489/**
Manuel Pégourié-Gonnard25781b22013-12-11 16:17:10 +0100490 * \def POLARSSL_KEY_EXCHANGE_ECDH_ECDSA_ENABLED
491 *
492 * Enable the ECDH-ECDSA based ciphersuite modes in SSL / TLS.
493 *
494 * Requires: POLARSSL_ECDH_C, POLARSSL_X509_CRT_PARSE_C
495 *
496 * This enables the following ciphersuites (if other requisites are
497 * enabled as well):
498 * TLS_ECDH_ECDSA_WITH_RC4_128_SHA
499 * TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA
500 * TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA
501 * TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA
502 * TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256
503 * TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384
504 * TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256
505 * TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384
506 * TLS_ECDH_ECDSA_WITH_CAMELLIA_128_CBC_SHA256
507 * TLS_ECDH_ECDSA_WITH_CAMELLIA_256_CBC_SHA384
508 * TLS_ECDH_ECDSA_WITH_CAMELLIA_128_GCM_SHA256
509 * TLS_ECDH_ECDSA_WITH_CAMELLIA_256_GCM_SHA384
510 */
511#define POLARSSL_KEY_EXCHANGE_ECDH_ECDSA_ENABLED
512
513/**
514 * \def POLARSSL_KEY_EXCHANGE_ECDH_RSA_ENABLED
515 *
516 * Enable the ECDH-RSA based ciphersuite modes in SSL / TLS.
517 *
518 * Requires: POLARSSL_ECDH_C, POLARSSL_X509_CRT_PARSE_C
519 *
520 * This enables the following ciphersuites (if other requisites are
521 * enabled as well):
522 * TLS_ECDH_RSA_WITH_RC4_128_SHA
523 * TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA
524 * TLS_ECDH_RSA_WITH_AES_128_CBC_SHA
525 * TLS_ECDH_RSA_WITH_AES_256_CBC_SHA
526 * TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256
527 * TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384
528 * TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256
529 * TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384
530 * TLS_ECDH_RSA_WITH_CAMELLIA_128_CBC_SHA256
531 * TLS_ECDH_RSA_WITH_CAMELLIA_256_CBC_SHA384
532 * TLS_ECDH_RSA_WITH_CAMELLIA_128_GCM_SHA256
533 * TLS_ECDH_RSA_WITH_CAMELLIA_256_GCM_SHA384
534 */
535#define POLARSSL_KEY_EXCHANGE_ECDH_RSA_ENABLED
536
537/**
Paul Bakkere2ab84f2013-06-29 18:24:32 +0200538 * \def POLARSSL_ERROR_STRERROR_BC
539 *
540 * Make available the backward compatible error_strerror() next to the
541 * current polarssl_strerror().
542 *
543 * Disable if you run into name conflicts and want to really remove the
544 * error_strerror()
545 */
546#define POLARSSL_ERROR_STRERROR_BC
547
548/**
Paul Bakker8fe40dc2013-02-02 12:43:08 +0100549 * \def POLARSSL_ERROR_STRERROR_DUMMY
550 *
Paul Bakkereba3ccf2013-09-09 15:55:12 +0200551 * Enable a dummy error function to make use of polarssl_strerror() in
Paul Bakker8fe40dc2013-02-02 12:43:08 +0100552 * third party libraries easier.
553 *
554 * Disable if you run into name conflicts and want to really remove the
Paul Bakkereba3ccf2013-09-09 15:55:12 +0200555 * polarssl_strerror()
Paul Bakker8fe40dc2013-02-02 12:43:08 +0100556 */
557#define POLARSSL_ERROR_STRERROR_DUMMY
558
559/**
Paul Bakker15566e42011-04-24 21:19:15 +0000560 * \def POLARSSL_GENPRIME
Paul Bakkerf3b86c12011-01-27 15:24:17 +0000561 *
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +0200562 * Enable the prime-number generation code.
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200563 *
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +0200564 * Requires: POLARSSL_BIGNUM_C
Paul Bakker5121ce52009-01-03 21:22:43 +0000565 */
Paul Bakker15566e42011-04-24 21:19:15 +0000566#define POLARSSL_GENPRIME
Paul Bakker5121ce52009-01-03 21:22:43 +0000567
Paul Bakkerf3b86c12011-01-27 15:24:17 +0000568/**
Paul Bakker335db3f2011-04-25 15:28:35 +0000569 * \def POLARSSL_FS_IO
570 *
571 * Enable functions that use the filesystem.
572 */
573#define POLARSSL_FS_IO
574
575/**
Paul Bakker43655f42011-12-15 20:11:16 +0000576 * \def POLARSSL_NO_DEFAULT_ENTROPY_SOURCES
577 *
578 * Do not add default entropy sources. These are the platform specific,
579 * hardclock and HAVEGE based poll functions.
580 *
581 * This is useful to have more control over the added entropy sources in an
582 * application.
583 *
584 * Uncomment this macro to prevent loading of default entropy functions.
Paul Bakker43655f42011-12-15 20:11:16 +0000585 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200586//#define POLARSSL_NO_DEFAULT_ENTROPY_SOURCES
Paul Bakker43655f42011-12-15 20:11:16 +0000587
588/**
Paul Bakker6083fd22011-12-03 21:45:14 +0000589 * \def POLARSSL_NO_PLATFORM_ENTROPY
590 *
591 * Do not use built-in platform entropy functions.
592 * This is useful if your platform does not support
593 * standards like the /dev/urandom or Windows CryptoAPI.
594 *
595 * Uncomment this macro to disable the built-in platform entropy functions.
Paul Bakker6083fd22011-12-03 21:45:14 +0000596 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200597//#define POLARSSL_NO_PLATFORM_ENTROPY
Paul Bakker6083fd22011-12-03 21:45:14 +0000598
599/**
Paul Bakker6e339b52013-07-03 13:37:05 +0200600 * \def POLARSSL_MEMORY_DEBUG
601 *
602 * Enable debugging of buffer allocator memory issues. Automatically prints
603 * (to stderr) all (fatal) messages on memory allocation issues. Enables
604 * function for 'debug output' of allocated memory.
605 *
606 * Requires: POLARSSL_MEMORY_BUFFER_ALLOC_C
607 * fprintf()
608 *
609 * Uncomment this macro to let the buffer allocator print out error messages.
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200610 */
611//#define POLARSSL_MEMORY_DEBUG
Paul Bakker6e339b52013-07-03 13:37:05 +0200612
613/**
614 * \def POLARSSL_MEMORY_BACKTRACE
615 *
616 * Include backtrace information with each allocated block.
617 *
618 * Requires: POLARSSL_MEMORY_BUFFER_ALLOC_C
619 * GLIBC-compatible backtrace() an backtrace_symbols() support
620 *
621 * Uncomment this macro to include backtrace information
Paul Bakker6e339b52013-07-03 13:37:05 +0200622 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200623//#define POLARSSL_MEMORY_BACKTRACE
Paul Bakker6e339b52013-07-03 13:37:05 +0200624
625/**
Paul Bakker48377d92013-08-30 12:06:24 +0200626 * \def POLARSSL_PKCS1_V15
627 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200628 * Enable support for PKCS#1 v1.5 encoding.
629 *
Paul Bakker48377d92013-08-30 12:06:24 +0200630 * Requires: POLARSSL_RSA_C
631 *
Paul Bakker48377d92013-08-30 12:06:24 +0200632 * This enables support for PKCS#1 v1.5 operations.
633 */
634#define POLARSSL_PKCS1_V15
635
636/**
Paul Bakker9dcc3222011-03-08 14:16:06 +0000637 * \def POLARSSL_PKCS1_V21
638 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200639 * Enable support for PKCS#1 v2.1 encoding.
640 *
Paul Bakker5690efc2011-05-26 13:16:06 +0000641 * Requires: POLARSSL_MD_C, POLARSSL_RSA_C
642 *
Paul Bakker9dcc3222011-03-08 14:16:06 +0000643 * This enables support for RSAES-OAEP and RSASSA-PSS operations.
644 */
645#define POLARSSL_PKCS1_V21
646
647/**
Paul Bakker0216cc12011-03-26 13:40:23 +0000648 * \def POLARSSL_RSA_NO_CRT
649 *
650 * Do not use the Chinese Remainder Theorem for the RSA private operation.
651 *
652 * Uncomment this macro to disable the use of CRT in RSA.
653 *
Paul Bakker0216cc12011-03-26 13:40:23 +0000654 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200655//#define POLARSSL_RSA_NO_CRT
Paul Bakker15566e42011-04-24 21:19:15 +0000656
657/**
658 * \def POLARSSL_SELF_TEST
659 *
660 * Enable the checkup functions (*_self_test).
661 */
662#define POLARSSL_SELF_TEST
Paul Bakker5c721f92011-07-27 16:51:09 +0000663
664/**
Paul Bakker40865c82013-01-31 17:13:13 +0100665 * \def POLARSSL_SSL_ALL_ALERT_MESSAGES
666 *
667 * Enable sending of alert messages in case of encountered errors as per RFC.
668 * If you choose not to send the alert messages, PolarSSL can still communicate
669 * with other servers, only debugging of failures is harder.
670 *
671 * The advantage of not sending alert messages, is that no information is given
672 * about reasons for failures thus preventing adversaries of gaining intel.
673 *
674 * Enable sending of all alert messages
675 */
676#define POLARSSL_SSL_ALERT_MESSAGES
677
678/**
Paul Bakkerd66f0702013-01-31 16:57:45 +0100679 * \def POLARSSL_SSL_DEBUG_ALL
680 *
681 * Enable the debug messages in SSL module for all issues.
682 * Debug messages have been disabled in some places to prevent timing
683 * attacks due to (unbalanced) debugging function calls.
684 *
685 * If you need all error reporting you should enable this during debugging,
686 * but remove this for production servers that should log as well.
687 *
688 * Uncomment this macro to report all debug messages on errors introducing
689 * a timing side-channel.
690 *
Paul Bakkerd66f0702013-01-31 16:57:45 +0100691 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200692//#define POLARSSL_SSL_DEBUG_ALL
Paul Bakkerd66f0702013-01-31 16:57:45 +0100693
694/**
Paul Bakker05ef8352012-05-08 09:17:57 +0000695 * \def POLARSSL_SSL_HW_RECORD_ACCEL
696 *
697 * Enable hooking functions in SSL module for hardware acceleration of
698 * individual records.
699 *
700 * Uncomment this macro to enable hooking functions.
Paul Bakker05ef8352012-05-08 09:17:57 +0000701 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200702//#define POLARSSL_SSL_HW_RECORD_ACCEL
Paul Bakker05ef8352012-05-08 09:17:57 +0000703
704/**
Paul Bakker78a8c712013-03-06 17:01:52 +0100705 * \def POLARSSL_SSL_SRV_SUPPORT_SSLV2_CLIENT_HELLO
706 *
707 * Enable support for receiving and parsing SSLv2 Client Hello messages for the
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200708 * SSL Server module (POLARSSL_SSL_SRV_C).
Paul Bakker78a8c712013-03-06 17:01:52 +0100709 *
710 * Comment this macro to disable support for SSLv2 Client Hello messages.
711 */
712#define POLARSSL_SSL_SRV_SUPPORT_SSLV2_CLIENT_HELLO
713
714/**
Manuel Pégourié-Gonnard1a9f2c72013-11-30 18:30:06 +0100715 * \def POLARSSL_SSL_SRV_RESPECT_CLIENT_PREFERENCE
716 *
717 * Pick the ciphersuite according to the client's preferences rather than ours
718 * in the SSL Server module (POLARSSL_SSL_SRV_C).
719 *
720 * Uncomment this macro to respect client's ciphersuite order
721 */
722//#define POLARSSL_SSL_SRV_RESPECT_CLIENT_PREFERENCE
723
724/**
Paul Bakker05decb22013-08-15 13:33:48 +0200725 * \def POLARSSL_SSL_MAX_FRAGMENT_LENGTH
726 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200727 * Enable support for RFC 6066 max_fragment_length extension in SSL.
Paul Bakker05decb22013-08-15 13:33:48 +0200728 *
729 * Comment this macro to disable support for the max_fragment_length extension
730 */
731#define POLARSSL_SSL_MAX_FRAGMENT_LENGTH
732
733/**
Paul Bakkerd2f068e2013-08-27 21:19:20 +0200734 * \def POLARSSL_SSL_PROTO_SSL3
735 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200736 * Enable support for SSL 3.0.
Paul Bakkerd2f068e2013-08-27 21:19:20 +0200737 *
738 * Requires: POLARSSL_MD5_C
739 * POLARSSL_SHA1_C
740 *
741 * Comment this macro to disable support for SSL 3.0
742 */
743#define POLARSSL_SSL_PROTO_SSL3
744
745/**
746 * \def POLARSSL_SSL_PROTO_TLS1
747 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200748 * Enable support for TLS 1.0.
Paul Bakkerd2f068e2013-08-27 21:19:20 +0200749 *
750 * Requires: POLARSSL_MD5_C
751 * POLARSSL_SHA1_C
752 *
753 * Comment this macro to disable support for TLS 1.0
754 */
755#define POLARSSL_SSL_PROTO_TLS1
756
757/**
758 * \def POLARSSL_SSL_PROTO_TLS1_1
759 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200760 * Enable support for TLS 1.1.
Paul Bakkerd2f068e2013-08-27 21:19:20 +0200761 *
762 * Requires: POLARSSL_MD5_C
763 * POLARSSL_SHA1_C
764 *
765 * Comment this macro to disable support for TLS 1.1
766 */
767#define POLARSSL_SSL_PROTO_TLS1_1
768
769/**
770 * \def POLARSSL_SSL_PROTO_TLS1_2
771 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200772 * Enable support for TLS 1.2.
Paul Bakkerd2f068e2013-08-27 21:19:20 +0200773 *
Manuel Pégourié-Gonnard7c3291e2013-10-27 14:29:51 +0100774 * Requires: POLARSSL_SHA1_C or POLARSSL_SHA256_C or POLARSSL_SHA512_C
Paul Bakkerd2f068e2013-08-27 21:19:20 +0200775 * (Depends on ciphersuites)
776 *
777 * Comment this macro to disable support for TLS 1.2
778 */
779#define POLARSSL_SSL_PROTO_TLS1_2
780
781/**
Paul Bakkera503a632013-08-14 13:48:06 +0200782 * \def POLARSSL_SSL_SESSION_TICKETS
783 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200784 * Enable support for RFC 5077 session tickets in SSL.
Paul Bakkera503a632013-08-14 13:48:06 +0200785 *
786 * Requires: POLARSSL_AES_C
787 * POLARSSL_SHA256_C
Manuel Pégourié-Gonnard92cb1d32013-09-13 16:24:20 +0200788 * POLARSSL_CIPHER_MODE_CBC
Paul Bakkera503a632013-08-14 13:48:06 +0200789 *
790 * Comment this macro to disable support for SSL session tickets
791 */
792#define POLARSSL_SSL_SESSION_TICKETS
793
794/**
Paul Bakker0be444a2013-08-27 21:55:01 +0200795 * \def POLARSSL_SSL_SERVER_NAME_INDICATION
796 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200797 * Enable support for RFC 6066 server name indication (SNI) in SSL.
Paul Bakker0be444a2013-08-27 21:55:01 +0200798 *
799 * Comment this macro to disable support for server name indication in SSL
800 */
801#define POLARSSL_SSL_SERVER_NAME_INDICATION
802
803/**
Paul Bakker1f2bc622013-08-15 13:45:55 +0200804 * \def POLARSSL_SSL_TRUNCATED_HMAC
805 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200806 * Enable support for RFC 6066 truncated HMAC in SSL.
Paul Bakker1f2bc622013-08-15 13:45:55 +0200807 *
808 * Comment this macro to disable support for truncated HMAC in SSL
809 */
810#define POLARSSL_SSL_TRUNCATED_HMAC
811
812/**
Paul Bakker2466d932013-09-28 14:40:38 +0200813 * \def POLARSSL_THREADING_ALT
814 *
815 * Provide your own alternate threading implementation.
816 *
817 * Requires: POLARSSL_THREADING_C
818 *
819 * Uncomment this to allow your own alternate threading implementation.
Paul Bakker2466d932013-09-28 14:40:38 +0200820 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200821//#define POLARSSL_THREADING_ALT
Paul Bakker2466d932013-09-28 14:40:38 +0200822
823/**
Paul Bakker2466d932013-09-28 14:40:38 +0200824 * \def POLARSSL_THREADING_PTHREAD
825 *
826 * Enable the pthread wrapper layer for the threading layer.
827 *
828 * Requires: POLARSSL_THREADING_C
829 *
830 * Uncomment this to enable pthread mutexes.
Paul Bakker2466d932013-09-28 14:40:38 +0200831 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200832//#define POLARSSL_THREADING_PTHREAD
Paul Bakker2466d932013-09-28 14:40:38 +0200833
834/**
Paul Bakkerc27c4e22013-09-23 15:01:36 +0200835 * \def POLARSSL_X509_ALLOW_EXTENSIONS_NON_V3
836 *
837 * If set, the X509 parser will not break-off when parsing an X509 certificate
838 * and encountering an extension in a v1 or v2 certificate.
839 *
840 * Uncomment to prevent an error.
Paul Bakkerc27c4e22013-09-23 15:01:36 +0200841 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200842//#define POLARSSL_X509_ALLOW_EXTENSIONS_NON_V3
Paul Bakkerc27c4e22013-09-23 15:01:36 +0200843
844/**
Paul Bakker5c721f92011-07-27 16:51:09 +0000845 * \def POLARSSL_X509_ALLOW_UNSUPPORTED_CRITICAL_EXTENSION
846 *
847 * If set, the X509 parser will not break-off when parsing an X509 certificate
848 * and encountering an unknown critical extension.
849 *
850 * Uncomment to prevent an error.
Paul Bakker5c721f92011-07-27 16:51:09 +0000851 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200852//#define POLARSSL_X509_ALLOW_UNSUPPORTED_CRITICAL_EXTENSION
Paul Bakker2770fbd2012-07-03 13:30:23 +0000853
854/**
855 * \def POLARSSL_ZLIB_SUPPORT
856 *
857 * If set, the SSL/TLS module uses ZLIB to support compression and
858 * decompression of packet data.
859 *
860 * Used in: library/ssl_tls.c
861 * library/ssl_cli.c
862 * library/ssl_srv.c
863 *
864 * This feature requires zlib library and headers to be present.
865 *
866 * Uncomment to enable use of ZLIB
Paul Bakker2770fbd2012-07-03 13:30:23 +0000867 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200868//#define POLARSSL_ZLIB_SUPPORT
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200869/* \} name SECTION: PolarSSL feature support */
Paul Bakker0a62cd12011-01-21 11:00:08 +0000870
Paul Bakkerf3b86c12011-01-27 15:24:17 +0000871/**
Paul Bakker0a62cd12011-01-21 11:00:08 +0000872 * \name SECTION: PolarSSL modules
873 *
874 * This section enables or disables entire modules in PolarSSL
875 * \{
876 */
Paul Bakker5121ce52009-01-03 21:22:43 +0000877
Paul Bakkerf3b86c12011-01-27 15:24:17 +0000878/**
Manuel Pégourié-Gonnard92ac76f2013-12-16 17:12:53 +0100879 * \def POLARSSL_AESNI_C
880 *
881 * Enable AES-NI support on x86-64.
882 *
883 * Module: library/aesni.c
884 * Caller: library/aes.c
885 *
886 * Requires: POLARSSL_HAVE_ASM
887 *
888 * This modules adds support for the AES-NI instructions on x86-64
889 */
890#define POLARSSL_AESNI_C
891
892/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +0000893 * \def POLARSSL_AES_C
894 *
895 * Enable the AES block cipher.
896 *
Paul Bakker5121ce52009-01-03 21:22:43 +0000897 * Module: library/aes.c
898 * Caller: library/ssl_tls.c
Paul Bakker96743fc2011-02-12 14:30:57 +0000899 * library/pem.c
Paul Bakker6083fd22011-12-03 21:45:14 +0000900 * library/ctr_drbg.c
Paul Bakker5121ce52009-01-03 21:22:43 +0000901 *
Paul Bakker645ce3a2012-10-31 12:32:41 +0000902 * This module enables the following ciphersuites (if other requisites are
903 * enabled as well):
Manuel Pégourié-Gonnard25781b22013-12-11 16:17:10 +0100904 * TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA
905 * TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA
906 * TLS_ECDH_RSA_WITH_AES_128_CBC_SHA
907 * TLS_ECDH_RSA_WITH_AES_256_CBC_SHA
908 * TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256
909 * TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384
910 * TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256
911 * TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384
912 * TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256
913 * TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384
914 * TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256
915 * TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200916 * TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384
917 * TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
918 * TLS_DHE_RSA_WITH_AES_256_GCM_SHA384
919 * TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384
920 * TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384
Paul Bakker645ce3a2012-10-31 12:32:41 +0000921 * TLS_DHE_RSA_WITH_AES_256_CBC_SHA256
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200922 * TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA
Paul Bakker41c83d32013-03-20 14:39:14 +0100923 * TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200924 * TLS_DHE_RSA_WITH_AES_256_CBC_SHA
925 * TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
926 * TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
927 * TLS_DHE_RSA_WITH_AES_128_GCM_SHA256
928 * TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256
929 * TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256
930 * TLS_DHE_RSA_WITH_AES_128_CBC_SHA256
931 * TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA
932 * TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA
933 * TLS_DHE_RSA_WITH_AES_128_CBC_SHA
934 * TLS_DHE_PSK_WITH_AES_256_GCM_SHA384
935 * TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA384
936 * TLS_DHE_PSK_WITH_AES_256_CBC_SHA384
937 * TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA
938 * TLS_DHE_PSK_WITH_AES_256_CBC_SHA
939 * TLS_DHE_PSK_WITH_AES_128_GCM_SHA256
940 * TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA256
941 * TLS_DHE_PSK_WITH_AES_128_CBC_SHA256
942 * TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA
943 * TLS_DHE_PSK_WITH_AES_128_CBC_SHA
944 * TLS_RSA_WITH_AES_256_GCM_SHA384
945 * TLS_RSA_WITH_AES_256_CBC_SHA256
946 * TLS_RSA_WITH_AES_256_CBC_SHA
947 * TLS_RSA_WITH_AES_128_GCM_SHA256
948 * TLS_RSA_WITH_AES_128_CBC_SHA256
949 * TLS_RSA_WITH_AES_128_CBC_SHA
950 * TLS_RSA_PSK_WITH_AES_256_GCM_SHA384
951 * TLS_RSA_PSK_WITH_AES_256_CBC_SHA384
952 * TLS_RSA_PSK_WITH_AES_256_CBC_SHA
953 * TLS_RSA_PSK_WITH_AES_128_GCM_SHA256
954 * TLS_RSA_PSK_WITH_AES_128_CBC_SHA256
955 * TLS_RSA_PSK_WITH_AES_128_CBC_SHA
956 * TLS_PSK_WITH_AES_256_GCM_SHA384
957 * TLS_PSK_WITH_AES_256_CBC_SHA384
Paul Bakkerd4a56ec2013-04-16 18:05:29 +0200958 * TLS_PSK_WITH_AES_256_CBC_SHA
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200959 * TLS_PSK_WITH_AES_128_GCM_SHA256
960 * TLS_PSK_WITH_AES_128_CBC_SHA256
961 * TLS_PSK_WITH_AES_128_CBC_SHA
Paul Bakker6deb37e2013-02-19 13:17:08 +0100962 *
Paul Bakkercff68422013-09-15 20:43:33 +0200963 * PEM_PARSE uses AES for decrypting encrypted keys.
Paul Bakker5121ce52009-01-03 21:22:43 +0000964 */
Paul Bakker40e46942009-01-03 21:51:57 +0000965#define POLARSSL_AES_C
Paul Bakker5121ce52009-01-03 21:22:43 +0000966
Paul Bakkerf3b86c12011-01-27 15:24:17 +0000967/**
968 * \def POLARSSL_ARC4_C
969 *
970 * Enable the ARCFOUR stream cipher.
971 *
Paul Bakker5121ce52009-01-03 21:22:43 +0000972 * Module: library/arc4.c
973 * Caller: library/ssl_tls.c
974 *
Paul Bakker41c83d32013-03-20 14:39:14 +0100975 * This module enables the following ciphersuites (if other requisites are
976 * enabled as well):
Manuel Pégourié-Gonnard25781b22013-12-11 16:17:10 +0100977 * TLS_ECDH_ECDSA_WITH_RC4_128_SHA
978 * TLS_ECDH_RSA_WITH_RC4_128_SHA
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200979 * TLS_ECDHE_ECDSA_WITH_RC4_128_SHA
Paul Bakker41c83d32013-03-20 14:39:14 +0100980 * TLS_ECDHE_RSA_WITH_RC4_128_SHA
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200981 * TLS_ECDHE_PSK_WITH_RC4_128_SHA
982 * TLS_DHE_PSK_WITH_RC4_128_SHA
983 * TLS_RSA_WITH_RC4_128_SHA
984 * TLS_RSA_WITH_RC4_128_MD5
985 * TLS_RSA_PSK_WITH_RC4_128_SHA
Paul Bakkerd4a56ec2013-04-16 18:05:29 +0200986 * TLS_PSK_WITH_RC4_128_SHA
Paul Bakker5121ce52009-01-03 21:22:43 +0000987 */
Paul Bakker40e46942009-01-03 21:51:57 +0000988#define POLARSSL_ARC4_C
Paul Bakker5121ce52009-01-03 21:22:43 +0000989
Paul Bakkerf3b86c12011-01-27 15:24:17 +0000990/**
Paul Bakkerefc30292011-11-10 14:43:23 +0000991 * \def POLARSSL_ASN1_PARSE_C
992 *
993 * Enable the generic ASN1 parser.
994 *
995 * Module: library/asn1.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +0200996 * Caller: library/x509.c
997 * library/dhm.c
998 * library/pkcs12.c
999 * library/pkcs5.c
1000 * library/pkparse.c
Paul Bakkerefc30292011-11-10 14:43:23 +00001001 */
1002#define POLARSSL_ASN1_PARSE_C
1003
1004/**
Paul Bakkerbdb912d2012-02-13 23:11:30 +00001005 * \def POLARSSL_ASN1_WRITE_C
1006 *
1007 * Enable the generic ASN1 writer.
1008 *
1009 * Module: library/asn1write.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001010 * Caller: library/ecdsa.c
1011 * library/pkwrite.c
1012 * library/x509_create.c
1013 * library/x509write_crt.c
1014 * library/x509write_csr.c
Paul Bakkerbdb912d2012-02-13 23:11:30 +00001015 */
1016#define POLARSSL_ASN1_WRITE_C
1017
1018/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001019 * \def POLARSSL_BASE64_C
1020 *
1021 * Enable the Base64 module.
1022 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001023 * Module: library/base64.c
Paul Bakker5690efc2011-05-26 13:16:06 +00001024 * Caller: library/pem.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001025 *
Paul Bakker5690efc2011-05-26 13:16:06 +00001026 * This module is required for PEM support (required by X.509).
Paul Bakker5121ce52009-01-03 21:22:43 +00001027 */
Paul Bakker40e46942009-01-03 21:51:57 +00001028#define POLARSSL_BASE64_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001029
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001030/**
1031 * \def POLARSSL_BIGNUM_C
1032 *
Paul Bakker9a736322012-11-14 12:39:52 +00001033 * Enable the multi-precision integer library.
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001034 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001035 * Module: library/bignum.c
1036 * Caller: library/dhm.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001037 * library/ecp.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001038 * library/rsa.c
1039 * library/ssl_tls.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001040 *
1041 * This module is required for RSA and DHM support.
1042 */
Paul Bakker40e46942009-01-03 21:51:57 +00001043#define POLARSSL_BIGNUM_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001044
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001045/**
Paul Bakkera9379c02012-07-04 11:02:11 +00001046 * \def POLARSSL_BLOWFISH_C
1047 *
1048 * Enable the Blowfish block cipher.
1049 *
1050 * Module: library/blowfish.c
1051 */
1052#define POLARSSL_BLOWFISH_C
1053
1054/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001055 * \def POLARSSL_CAMELLIA_C
1056 *
1057 * Enable the Camellia block cipher.
1058 *
Paul Bakker38119b12009-01-10 23:31:23 +00001059 * Module: library/camellia.c
Paul Bakker13e2dfe2009-07-28 07:18:38 +00001060 * Caller: library/ssl_tls.c
Paul Bakker38119b12009-01-10 23:31:23 +00001061 *
Paul Bakker645ce3a2012-10-31 12:32:41 +00001062 * This module enables the following ciphersuites (if other requisites are
1063 * enabled as well):
Manuel Pégourié-Gonnard25781b22013-12-11 16:17:10 +01001064 * TLS_ECDH_ECDSA_WITH_CAMELLIA_128_CBC_SHA256
1065 * TLS_ECDH_ECDSA_WITH_CAMELLIA_256_CBC_SHA384
1066 * TLS_ECDH_RSA_WITH_CAMELLIA_128_CBC_SHA256
1067 * TLS_ECDH_RSA_WITH_CAMELLIA_256_CBC_SHA384
1068 * TLS_ECDH_ECDSA_WITH_CAMELLIA_128_GCM_SHA256
1069 * TLS_ECDH_ECDSA_WITH_CAMELLIA_256_GCM_SHA384
1070 * TLS_ECDH_RSA_WITH_CAMELLIA_128_GCM_SHA256
1071 * TLS_ECDH_RSA_WITH_CAMELLIA_256_GCM_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001072 * TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_GCM_SHA384
1073 * TLS_ECDHE_RSA_WITH_CAMELLIA_256_GCM_SHA384
1074 * TLS_DHE_RSA_WITH_CAMELLIA_256_GCM_SHA384
1075 * TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_CBC_SHA384
1076 * TLS_ECDHE_RSA_WITH_CAMELLIA_256_CBC_SHA384
Paul Bakker645ce3a2012-10-31 12:32:41 +00001077 * TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA256
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001078 * TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA
1079 * TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_GCM_SHA256
1080 * TLS_ECDHE_RSA_WITH_CAMELLIA_128_GCM_SHA256
1081 * TLS_DHE_RSA_WITH_CAMELLIA_128_GCM_SHA256
1082 * TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_CBC_SHA256
1083 * TLS_ECDHE_RSA_WITH_CAMELLIA_128_CBC_SHA256
1084 * TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA256
1085 * TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA
1086 * TLS_DHE_PSK_WITH_CAMELLIA_256_GCM_SHA384
1087 * TLS_ECDHE_PSK_WITH_CAMELLIA_256_CBC_SHA384
1088 * TLS_DHE_PSK_WITH_CAMELLIA_256_CBC_SHA384
1089 * TLS_DHE_PSK_WITH_CAMELLIA_128_GCM_SHA256
1090 * TLS_DHE_PSK_WITH_CAMELLIA_128_CBC_SHA256
1091 * TLS_ECDHE_PSK_WITH_CAMELLIA_128_CBC_SHA256
1092 * TLS_RSA_WITH_CAMELLIA_256_GCM_SHA384
1093 * TLS_RSA_WITH_CAMELLIA_256_CBC_SHA256
1094 * TLS_RSA_WITH_CAMELLIA_256_CBC_SHA
1095 * TLS_RSA_WITH_CAMELLIA_128_GCM_SHA256
1096 * TLS_RSA_WITH_CAMELLIA_128_CBC_SHA256
1097 * TLS_RSA_WITH_CAMELLIA_128_CBC_SHA
1098 * TLS_RSA_PSK_WITH_CAMELLIA_256_GCM_SHA384
1099 * TLS_RSA_PSK_WITH_CAMELLIA_256_CBC_SHA384
1100 * TLS_RSA_PSK_WITH_CAMELLIA_128_GCM_SHA256
1101 * TLS_RSA_PSK_WITH_CAMELLIA_128_CBC_SHA256
1102 * TLS_PSK_WITH_CAMELLIA_256_GCM_SHA384
1103 * TLS_PSK_WITH_CAMELLIA_256_CBC_SHA384
1104 * TLS_PSK_WITH_CAMELLIA_128_GCM_SHA256
1105 * TLS_PSK_WITH_CAMELLIA_128_CBC_SHA256
Paul Bakker38119b12009-01-10 23:31:23 +00001106 */
1107#define POLARSSL_CAMELLIA_C
1108
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001109/**
1110 * \def POLARSSL_CERTS_C
1111 *
1112 * Enable the test certificates.
1113 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001114 * Module: library/certs.c
1115 * Caller:
1116 *
Manuel Pégourié-Gonnard18dc0e22013-10-27 14:35:02 +01001117 * Requires: POLARSSL_PEM_PARSE_C
1118 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001119 * This module is used for testing (ssl_client/server).
1120 */
Paul Bakker40e46942009-01-03 21:51:57 +00001121#define POLARSSL_CERTS_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001122
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001123/**
1124 * \def POLARSSL_CIPHER_C
1125 *
1126 * Enable the generic cipher layer.
1127 *
Paul Bakker8123e9d2011-01-06 15:37:30 +00001128 * Module: library/cipher.c
Paul Bakker04784f52013-08-19 13:30:57 +02001129 * Caller: library/ssl_tls.c
Paul Bakker8123e9d2011-01-06 15:37:30 +00001130 *
1131 * Uncomment to enable generic cipher wrappers.
1132 */
1133#define POLARSSL_CIPHER_C
1134
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001135/**
Paul Bakker0e04d0e2011-11-27 14:46:59 +00001136 * \def POLARSSL_CTR_DRBG_C
1137 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001138 * Enable the CTR_DRBG AES-256-based random generator.
Paul Bakker0e04d0e2011-11-27 14:46:59 +00001139 *
1140 * Module: library/ctr_drbg.c
1141 * Caller:
1142 *
Paul Bakker6083fd22011-12-03 21:45:14 +00001143 * Requires: POLARSSL_AES_C
1144 *
Paul Bakker0e04d0e2011-11-27 14:46:59 +00001145 * This module provides the CTR_DRBG AES-256 random number generator.
1146 */
1147#define POLARSSL_CTR_DRBG_C
1148
1149/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001150 * \def POLARSSL_DEBUG_C
1151 *
1152 * Enable the debug functions.
1153 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001154 * Module: library/debug.c
1155 * Caller: library/ssl_cli.c
1156 * library/ssl_srv.c
1157 * library/ssl_tls.c
1158 *
1159 * This module provides debugging functions.
1160 */
Paul Bakker40e46942009-01-03 21:51:57 +00001161#define POLARSSL_DEBUG_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001162
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001163/**
1164 * \def POLARSSL_DES_C
1165 *
1166 * Enable the DES block cipher.
1167 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001168 * Module: library/des.c
Paul Bakker6deb37e2013-02-19 13:17:08 +01001169 * Caller: library/pem.c
1170 * library/ssl_tls.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001171 *
Paul Bakker645ce3a2012-10-31 12:32:41 +00001172 * This module enables the following ciphersuites (if other requisites are
1173 * enabled as well):
Manuel Pégourié-Gonnard25781b22013-12-11 16:17:10 +01001174 * TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA
1175 * TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001176 * TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA
Paul Bakker41c83d32013-03-20 14:39:14 +01001177 * TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001178 * TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA
1179 * TLS_ECDHE_PSK_WITH_3DES_EDE_CBC_SHA
1180 * TLS_DHE_PSK_WITH_3DES_EDE_CBC_SHA
1181 * TLS_RSA_WITH_3DES_EDE_CBC_SHA
1182 * TLS_RSA_PSK_WITH_3DES_EDE_CBC_SHA
Paul Bakkerd4a56ec2013-04-16 18:05:29 +02001183 * TLS_PSK_WITH_3DES_EDE_CBC_SHA
Paul Bakker6deb37e2013-02-19 13:17:08 +01001184 *
Paul Bakkercff68422013-09-15 20:43:33 +02001185 * PEM_PARSE uses DES/3DES for decrypting encrypted keys.
Paul Bakker5121ce52009-01-03 21:22:43 +00001186 */
Paul Bakker40e46942009-01-03 21:51:57 +00001187#define POLARSSL_DES_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001188
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001189/**
1190 * \def POLARSSL_DHM_C
1191 *
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001192 * Enable the Diffie-Hellman-Merkle module.
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001193 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001194 * Module: library/dhm.c
1195 * Caller: library/ssl_cli.c
1196 * library/ssl_srv.c
1197 *
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001198 * This module is used by the following key exchanges:
1199 * DHE-RSA, DHE-PSK
Paul Bakker5121ce52009-01-03 21:22:43 +00001200 */
Paul Bakker40e46942009-01-03 21:51:57 +00001201#define POLARSSL_DHM_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001202
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001203/**
Paul Bakkerd589a0d2013-03-13 16:30:17 +01001204 * \def POLARSSL_ECDH_C
1205 *
1206 * Enable the elliptic curve Diffie-Hellman library.
1207 *
1208 * Module: library/ecdh.c
Paul Bakker41c83d32013-03-20 14:39:14 +01001209 * Caller: library/ssl_cli.c
1210 * library/ssl_srv.c
1211 *
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001212 * This module is used by the following key exchanges:
1213 * ECDHE-ECDSA, ECDHE-RSA, DHE-PSK
Paul Bakkerd589a0d2013-03-13 16:30:17 +01001214 *
1215 * Requires: POLARSSL_ECP_C
1216 */
1217#define POLARSSL_ECDH_C
1218
1219/**
1220 * \def POLARSSL_ECDSA_C
1221 *
1222 * Enable the elliptic curve DSA library.
1223 *
1224 * Module: library/ecdsa.c
1225 * Caller:
1226 *
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001227 * This module is used by the following key exchanges:
1228 * ECDHE-ECDSA
1229 *
Manuel Pégourié-Gonnard4846f5e2013-08-08 14:36:15 +02001230 * Requires: POLARSSL_ECP_C, POLARSSL_ASN1_WRITE_C, POLARSSL_ASN1_PARSE_C
Paul Bakkerd589a0d2013-03-13 16:30:17 +01001231 */
1232#define POLARSSL_ECDSA_C
1233
1234/**
1235 * \def POLARSSL_ECP_C
1236 *
1237 * Enable the elliptic curve over GF(p) library.
1238 *
1239 * Module: library/ecp.c
1240 * Caller: library/ecdh.c
1241 * library/ecdsa.c
1242 *
Manuel Pégourié-Gonnardb8012fc2013-10-10 15:40:49 +02001243 * Requires: POLARSSL_BIGNUM_C and at least one POLARSSL_ECP_DP_XXX_ENABLED
Paul Bakkerd589a0d2013-03-13 16:30:17 +01001244 */
1245#define POLARSSL_ECP_C
1246
1247/**
Paul Bakker6083fd22011-12-03 21:45:14 +00001248 * \def POLARSSL_ENTROPY_C
1249 *
1250 * Enable the platform-specific entropy code.
1251 *
1252 * Module: library/entropy.c
1253 * Caller:
1254 *
Paul Bakker9e36f042013-06-30 14:34:05 +02001255 * Requires: POLARSSL_SHA512_C
Paul Bakker6083fd22011-12-03 21:45:14 +00001256 *
1257 * This module provides a generic entropy pool
1258 */
1259#define POLARSSL_ENTROPY_C
1260
1261/**
Paul Bakker9d781402011-05-09 16:17:09 +00001262 * \def POLARSSL_ERROR_C
1263 *
1264 * Enable error code to error string conversion.
1265 *
1266 * Module: library/error.c
1267 * Caller:
1268 *
1269 * This module enables err_strerror().
1270 */
1271#define POLARSSL_ERROR_C
1272
1273/**
Paul Bakker89e80c92012-03-20 13:50:09 +00001274 * \def POLARSSL_GCM_C
1275 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001276 * Enable the Galois/Counter Mode (GCM) for AES.
Paul Bakker89e80c92012-03-20 13:50:09 +00001277 *
1278 * Module: library/gcm.c
1279 *
Manuel Pégourié-Gonnard7bd8a992013-10-24 13:39:39 +02001280 * Requires: POLARSSL_AES_C or POLARSSL_CAMELLIA_C
Paul Bakker645ce3a2012-10-31 12:32:41 +00001281 *
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001282 * This module enables the AES-GCM and CAMELLIA-GCM ciphersuites, if other
1283 * requisites are enabled as well.
Paul Bakker89e80c92012-03-20 13:50:09 +00001284 */
1285#define POLARSSL_GCM_C
1286
1287/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001288 * \def POLARSSL_HAVEGE_C
1289 *
1290 * Enable the HAVEGE random generator.
1291 *
Paul Bakker2a844242013-06-24 13:01:53 +02001292 * Warning: the HAVEGE random generator is not suitable for virtualized
1293 * environments
1294 *
1295 * Warning: the HAVEGE random generator is dependent on timing and specific
1296 * processor traits. It is therefore not advised to use HAVEGE as
1297 * your applications primary random generator or primary entropy pool
1298 * input. As a secondary input to your entropy pool, it IS able add
1299 * the (limited) extra entropy it provides.
1300 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001301 * Module: library/havege.c
1302 * Caller:
1303 *
Paul Bakker5690efc2011-05-26 13:16:06 +00001304 * Requires: POLARSSL_TIMING_C
1305 *
Paul Bakker2a844242013-06-24 13:01:53 +02001306 * Uncomment to enable the HAVEGE random generator.
Paul Bakker2a844242013-06-24 13:01:53 +02001307 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +02001308//#define POLARSSL_HAVEGE_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001309
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001310/**
1311 * \def POLARSSL_MD_C
1312 *
1313 * Enable the generic message digest layer.
1314 *
Paul Bakker17373852011-01-06 14:20:01 +00001315 * Module: library/md.c
1316 * Caller:
1317 *
1318 * Uncomment to enable generic message digest wrappers.
1319 */
1320#define POLARSSL_MD_C
1321
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001322/**
1323 * \def POLARSSL_MD2_C
1324 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001325 * Enable the MD2 hash algorithm.
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001326 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001327 * Module: library/md2.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001328 * Caller:
Paul Bakker5121ce52009-01-03 21:22:43 +00001329 *
1330 * Uncomment to enable support for (rare) MD2-signed X.509 certs.
Paul Bakker6506aff2009-07-28 20:52:02 +00001331 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +02001332//#define POLARSSL_MD2_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001333
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001334/**
1335 * \def POLARSSL_MD4_C
1336 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001337 * Enable the MD4 hash algorithm.
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001338 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001339 * Module: library/md4.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001340 * Caller:
Paul Bakker5121ce52009-01-03 21:22:43 +00001341 *
1342 * Uncomment to enable support for (rare) MD4-signed X.509 certs.
Paul Bakker6506aff2009-07-28 20:52:02 +00001343 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +02001344//#define POLARSSL_MD4_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001345
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001346/**
1347 * \def POLARSSL_MD5_C
1348 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001349 * Enable the MD5 hash algorithm.
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001350 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001351 * Module: library/md5.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001352 * Caller: library/md.c
1353 * library/pem.c
Paul Bakker6deb37e2013-02-19 13:17:08 +01001354 * library/ssl_tls.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001355 *
1356 * This module is required for SSL/TLS and X.509.
Paul Bakkercff68422013-09-15 20:43:33 +02001357 * PEM_PARSE uses MD5 for decrypting encrypted keys.
Paul Bakker5121ce52009-01-03 21:22:43 +00001358 */
Paul Bakker40e46942009-01-03 21:51:57 +00001359#define POLARSSL_MD5_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001360
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001361/**
Paul Bakker6e339b52013-07-03 13:37:05 +02001362 * \def POLARSSL_MEMORY_C
1363 *
1364 * Enable the memory allocation layer.
1365 * By default PolarSSL uses the system-provided malloc() and free().
1366 * (As long as POLARSSL_MEMORY_STDMALLOC and POLARSSL_MEMORY_STDFREE
1367 * are defined and unmodified)
1368 *
1369 * This allows different allocators (self-implemented or provided)
1370 *
1371 * Enable this layer to allow use of alternative memory allocators.
Paul Bakker6e339b52013-07-03 13:37:05 +02001372 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +02001373//#define POLARSSL_MEMORY_C
Paul Bakker6e339b52013-07-03 13:37:05 +02001374
1375/**
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001376 * \def POLARSSL_MEMORY_BUFFER_ALLOC_C
1377 *
1378 * Enable the buffer allocator implementation that makes use of a (stack)
1379 * based buffer to 'allocate' dynamic memory. (replaces malloc() and free()
1380 * calls)
Paul Bakker6e339b52013-07-03 13:37:05 +02001381 *
1382 * Module: library/memory_buffer_alloc.c
1383 *
1384 * Requires: POLARSSL_MEMORY_C
1385 *
1386 * Enable this module to enable the buffer memory allocator.
Paul Bakker6e339b52013-07-03 13:37:05 +02001387 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +02001388//#define POLARSSL_MEMORY_BUFFER_ALLOC_C
Paul Bakker6e339b52013-07-03 13:37:05 +02001389
1390/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001391 * \def POLARSSL_NET_C
1392 *
1393 * Enable the TCP/IP networking routines.
1394 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001395 * Module: library/net.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001396 *
1397 * This module provides TCP/IP networking routines.
1398 */
Paul Bakker40e46942009-01-03 21:51:57 +00001399#define POLARSSL_NET_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001400
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001401/**
Paul Bakkerc70b9822013-04-07 22:00:46 +02001402 * \def POLARSSL_OID_C
1403 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001404 * Enable the OID database.
Paul Bakkerc70b9822013-04-07 22:00:46 +02001405 *
1406 * Module: library/oid.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001407 * Caller: library/asn1write.c
1408 * library/pkcs5.c
1409 * library/pkparse.c
1410 * library/pkwrite.c
1411 * library/rsa.c
1412 * library/x509.c
1413 * library/x509_create.c
1414 * library/x509_crl.c
1415 * library/x509_crt.c
1416 * library/x509_csr.c
1417 * library/x509write_crt.c
1418 * library/x509write_csr.c
Paul Bakkerc70b9822013-04-07 22:00:46 +02001419 *
1420 * This modules translates between OIDs and internal values.
1421 */
1422#define POLARSSL_OID_C
1423
1424/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001425 * \def POLARSSL_PADLOCK_C
1426 *
1427 * Enable VIA Padlock support on x86.
1428 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001429 * Module: library/padlock.c
1430 * Caller: library/aes.c
1431 *
Manuel Pégourié-Gonnard92ac76f2013-12-16 17:12:53 +01001432 * Requires: POLARSSL_HAVE_ASM
1433 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001434 * This modules adds support for the VIA PadLock on x86.
1435 */
Paul Bakker40e46942009-01-03 21:51:57 +00001436#define POLARSSL_PADLOCK_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001437
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001438/**
Paul Bakkerf518b162012-08-23 13:03:18 +00001439 * \def POLARSSL_PBKDF2_C
1440 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001441 * Enable PKCS#5 PBKDF2 key derivation function.
Paul Bakkerb0c19a42013-06-24 19:26:38 +02001442 * DEPRECATED: Use POLARSSL_PKCS5_C instead
Paul Bakkerf518b162012-08-23 13:03:18 +00001443 *
1444 * Module: library/pbkdf2.c
1445 *
Paul Bakkerb0c19a42013-06-24 19:26:38 +02001446 * Requires: POLARSSL_PKCS5_C
Paul Bakkerf518b162012-08-23 13:03:18 +00001447 *
1448 * This module adds support for the PKCS#5 PBKDF2 key derivation function.
Paul Bakkerf518b162012-08-23 13:03:18 +00001449 */
Paul Bakker370e90c2013-04-08 15:19:43 +02001450#define POLARSSL_PBKDF2_C
Paul Bakkerf518b162012-08-23 13:03:18 +00001451
1452/**
Paul Bakkercff68422013-09-15 20:43:33 +02001453 * \def POLARSSL_PEM_PARSE_C
Paul Bakker96743fc2011-02-12 14:30:57 +00001454 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001455 * Enable PEM decoding / parsing.
Paul Bakker96743fc2011-02-12 14:30:57 +00001456 *
1457 * Module: library/pem.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001458 * Caller: library/dhm.c
Paul Bakkercff68422013-09-15 20:43:33 +02001459 * library/pkparse.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001460 * library/x509_crl.c
1461 * library/x509_crt.c
1462 * library/x509_csr.c
Paul Bakker96743fc2011-02-12 14:30:57 +00001463 *
Paul Bakker5690efc2011-05-26 13:16:06 +00001464 * Requires: POLARSSL_BASE64_C
1465 *
Paul Bakkercff68422013-09-15 20:43:33 +02001466 * This modules adds support for decoding / parsing PEM files.
Paul Bakker96743fc2011-02-12 14:30:57 +00001467 */
Paul Bakkercff68422013-09-15 20:43:33 +02001468#define POLARSSL_PEM_PARSE_C
1469
1470/**
1471 * \def POLARSSL_PEM_WRITE_C
1472 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001473 * Enable PEM encoding / writing.
Paul Bakkercff68422013-09-15 20:43:33 +02001474 *
1475 * Module: library/pem.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001476 * Caller: library/pkwrite.c
1477 * library/x509write_crt.c
1478 * library/x509write_csr.c
Paul Bakkercff68422013-09-15 20:43:33 +02001479 *
1480 * Requires: POLARSSL_BASE64_C
1481 *
1482 * This modules adds support for encoding / writing PEM files.
1483 */
1484#define POLARSSL_PEM_WRITE_C
Paul Bakker96743fc2011-02-12 14:30:57 +00001485
1486/**
Manuel Pégourié-Gonnardc40b4c32013-08-22 13:29:31 +02001487 * \def POLARSSL_PK_C
1488 *
1489 * Enable the generic public (asymetric) key layer.
1490 *
1491 * Module: library/pk.c
Manuel Pégourié-Gonnard1a483832013-09-20 12:29:15 +02001492 * Caller: library/ssl_tls.c
Manuel Pégourié-Gonnardc40b4c32013-08-22 13:29:31 +02001493 * library/ssl_cli.c
1494 * library/ssl_srv.c
1495 *
Manuel Pégourié-Gonnard1a483832013-09-20 12:29:15 +02001496 * Requires: POLARSSL_RSA_C or POLARSSL_ECP_C
1497 *
Manuel Pégourié-Gonnardc40b4c32013-08-22 13:29:31 +02001498 * Uncomment to enable generic public key wrappers.
1499 */
1500#define POLARSSL_PK_C
1501
1502/**
Paul Bakker4606c732013-09-15 17:04:23 +02001503 * \def POLARSSL_PK_PARSE_C
1504 *
1505 * Enable the generic public (asymetric) key parser.
1506 *
1507 * Module: library/pkparse.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001508 * Caller: library/x509_crt.c
1509 * library/x509_csr.c
Paul Bakker4606c732013-09-15 17:04:23 +02001510 *
1511 * Requires: POLARSSL_PK_C
1512 *
1513 * Uncomment to enable generic public key parse functions.
1514 */
1515#define POLARSSL_PK_PARSE_C
1516
1517/**
1518 * \def POLARSSL_PK_WRITE_C
1519 *
Paul Bakkerf20ba4b2013-09-16 22:46:20 +02001520 * Enable the generic public (asymetric) key writer.
Paul Bakker4606c732013-09-15 17:04:23 +02001521 *
1522 * Module: library/pkwrite.c
1523 * Caller: library/x509write.c
1524 *
1525 * Requires: POLARSSL_PK_C
1526 *
1527 * Uncomment to enable generic public key write functions.
1528 */
1529#define POLARSSL_PK_WRITE_C
1530
1531/**
Paul Bakkerb0c19a42013-06-24 19:26:38 +02001532 * \def POLARSSL_PKCS5_C
1533 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001534 * Enable PKCS#5 functions.
Paul Bakkerb0c19a42013-06-24 19:26:38 +02001535 *
1536 * Module: library/pkcs5.c
1537 *
1538 * Requires: POLARSSL_MD_C
1539 *
1540 * This module adds support for the PKCS#5 functions.
1541 */
1542#define POLARSSL_PKCS5_C
1543
1544/**
Paul Bakker5690efc2011-05-26 13:16:06 +00001545 * \def POLARSSL_PKCS11_C
1546 *
Paul Bakkereb2c6582012-09-27 19:15:01 +00001547 * Enable wrapper for PKCS#11 smartcard support.
Paul Bakker5690efc2011-05-26 13:16:06 +00001548 *
Manuel Pégourié-Gonnard51be5592013-08-22 13:35:53 +02001549 * Module: library/pkcs11.c
1550 * Caller: library/pk.c
Paul Bakker5690efc2011-05-26 13:16:06 +00001551 *
Manuel Pégourié-Gonnard51be5592013-08-22 13:35:53 +02001552 * Requires: POLARSSL_PK_C
Paul Bakker5690efc2011-05-26 13:16:06 +00001553 *
Paul Bakkereb2c6582012-09-27 19:15:01 +00001554 * This module enables SSL/TLS PKCS #11 smartcard support.
Paul Bakker5690efc2011-05-26 13:16:06 +00001555 * Requires the presence of the PKCS#11 helper library (libpkcs11-helper)
Paul Bakker5690efc2011-05-26 13:16:06 +00001556 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +02001557//#define POLARSSL_PKCS11_C
Paul Bakker5690efc2011-05-26 13:16:06 +00001558
1559/**
Paul Bakkerf1f21fe2013-06-24 19:17:19 +02001560 * \def POLARSSL_PKCS12_C
1561 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001562 * Enable PKCS#12 PBE functions.
Paul Bakkerf1f21fe2013-06-24 19:17:19 +02001563 * Adds algorithms for parsing PKCS#8 encrypted private keys
1564 *
1565 * Module: library/pkcs12.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001566 * Caller: library/pkparse.c
Paul Bakkerf1f21fe2013-06-24 19:17:19 +02001567 *
Paul Bakkerb0713c72013-06-24 19:34:08 +02001568 * Requires: POLARSSL_ASN1_PARSE_C, POLARSSL_CIPHER_C, POLARSSL_MD_C
1569 * Can use: POLARSSL_ARC4_C
Paul Bakkerf1f21fe2013-06-24 19:17:19 +02001570 *
1571 * This module enables PKCS#12 functions.
1572 */
1573#define POLARSSL_PKCS12_C
1574
1575/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001576 * \def POLARSSL_RSA_C
1577 *
1578 * Enable the RSA public-key cryptosystem.
1579 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001580 * Module: library/rsa.c
1581 * Caller: library/ssl_cli.c
1582 * library/ssl_srv.c
1583 * library/ssl_tls.c
1584 * library/x509.c
1585 *
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001586 * This module is used by the following key exchanges:
1587 * RSA, DHE-RSA, ECDHE-RSA, RSA-PSK
Paul Bakker5690efc2011-05-26 13:16:06 +00001588 *
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001589 * Requires: POLARSSL_BIGNUM_C, POLARSSL_OID_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001590 */
Paul Bakker40e46942009-01-03 21:51:57 +00001591#define POLARSSL_RSA_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001592
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001593/**
1594 * \def POLARSSL_SHA1_C
1595 *
1596 * Enable the SHA1 cryptographic hash algorithm.
1597 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001598 * Module: library/sha1.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001599 * Caller: library/md.c
1600 * library/ssl_cli.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001601 * library/ssl_srv.c
1602 * library/ssl_tls.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001603 * library/x509write_crt.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001604 *
1605 * This module is required for SSL/TLS and SHA1-signed certificates.
1606 */
Paul Bakker40e46942009-01-03 21:51:57 +00001607#define POLARSSL_SHA1_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001608
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001609/**
Paul Bakker9e36f042013-06-30 14:34:05 +02001610 * \def POLARSSL_SHA256_C
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001611 *
1612 * Enable the SHA-224 and SHA-256 cryptographic hash algorithms.
Paul Bakker9e36f042013-06-30 14:34:05 +02001613 * (Used to be POLARSSL_SHA2_C)
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001614 *
Paul Bakker9e36f042013-06-30 14:34:05 +02001615 * Module: library/sha256.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001616 * Caller: library/entropy.c
1617 * library/md.c
1618 * library/ssl_cli.c
1619 * library/ssl_srv.c
1620 * library/ssl_tls.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001621 *
1622 * This module adds support for SHA-224 and SHA-256.
Paul Bakker769075d2012-11-24 11:26:46 +01001623 * This module is required for the SSL/TLS 1.2 PRF function.
Paul Bakker5121ce52009-01-03 21:22:43 +00001624 */
Paul Bakker9e36f042013-06-30 14:34:05 +02001625#define POLARSSL_SHA256_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001626
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001627/**
Paul Bakker9e36f042013-06-30 14:34:05 +02001628 * \def POLARSSL_SHA512_C
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001629 *
1630 * Enable the SHA-384 and SHA-512 cryptographic hash algorithms.
Paul Bakker9e36f042013-06-30 14:34:05 +02001631 * (Used to be POLARSSL_SHA4_C)
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001632 *
Paul Bakker9e36f042013-06-30 14:34:05 +02001633 * Module: library/sha512.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001634 * Caller: library/entropy.c
1635 * library/md.c
1636 * library/ssl_cli.c
1637 * library/ssl_srv.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001638 *
1639 * This module adds support for SHA-384 and SHA-512.
1640 */
Paul Bakker9e36f042013-06-30 14:34:05 +02001641#define POLARSSL_SHA512_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001642
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001643/**
Paul Bakker0a597072012-09-25 21:55:46 +00001644 * \def POLARSSL_SSL_CACHE_C
1645 *
1646 * Enable simple SSL cache implementation.
1647 *
1648 * Module: library/ssl_cache.c
1649 * Caller:
1650 *
1651 * Requires: POLARSSL_SSL_CACHE_C
1652 */
1653#define POLARSSL_SSL_CACHE_C
1654
1655/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001656 * \def POLARSSL_SSL_CLI_C
1657 *
1658 * Enable the SSL/TLS client code.
1659 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001660 * Module: library/ssl_cli.c
1661 * Caller:
1662 *
Paul Bakker5690efc2011-05-26 13:16:06 +00001663 * Requires: POLARSSL_SSL_TLS_C
1664 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001665 * This module is required for SSL/TLS client support.
1666 */
Paul Bakker40e46942009-01-03 21:51:57 +00001667#define POLARSSL_SSL_CLI_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001668
Paul Bakker9a736322012-11-14 12:39:52 +00001669/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001670 * \def POLARSSL_SSL_SRV_C
1671 *
1672 * Enable the SSL/TLS server code.
1673 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001674 * Module: library/ssl_srv.c
1675 * Caller:
1676 *
Paul Bakker5690efc2011-05-26 13:16:06 +00001677 * Requires: POLARSSL_SSL_TLS_C
1678 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001679 * This module is required for SSL/TLS server support.
1680 */
Paul Bakker40e46942009-01-03 21:51:57 +00001681#define POLARSSL_SSL_SRV_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001682
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001683/**
1684 * \def POLARSSL_SSL_TLS_C
1685 *
Paul Bakkere29ab062011-05-18 13:26:54 +00001686 * Enable the generic SSL/TLS code.
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001687 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001688 * Module: library/ssl_tls.c
1689 * Caller: library/ssl_cli.c
1690 * library/ssl_srv.c
1691 *
Manuel Pégourié-Gonnard1a483832013-09-20 12:29:15 +02001692 * Requires: POLARSSL_CIPHER_C, POLARSSL_MD_C
Paul Bakker577e0062013-08-28 11:57:20 +02001693 * and at least one of the POLARSSL_SSL_PROTO_* defines
Paul Bakker5690efc2011-05-26 13:16:06 +00001694 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001695 * This module is required for SSL/TLS.
1696 */
Paul Bakker40e46942009-01-03 21:51:57 +00001697#define POLARSSL_SSL_TLS_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001698
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001699/**
Paul Bakker2466d932013-09-28 14:40:38 +02001700 * \def POLARSSL_THREADING_C
1701 *
1702 * Enable the threading abstraction layer.
1703 * By default PolarSSL assumes it is used in a non-threaded environment or that
1704 * contexts are not shared between threads. If you do intend to use contexts
1705 * between threads, you will need to enable this layer to prevent race
1706 * conditions.
1707 *
1708 * Module: library/threading.c
1709 *
1710 * This allows different threading implementations (self-implemented or
1711 * provided).
1712 *
Paul Bakkera8fd3e32013-12-31 11:54:08 +01001713 * You will have to enable either POLARSSL_THREADING_ALT or
1714 * POLARSSL_THREADING_PTHREAD.
Paul Bakker2466d932013-09-28 14:40:38 +02001715 *
1716 * Enable this layer to allow use of mutexes within PolarSSL
Paul Bakker2466d932013-09-28 14:40:38 +02001717 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +02001718//#define POLARSSL_THREADING_C
Paul Bakker2466d932013-09-28 14:40:38 +02001719
1720/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001721 * \def POLARSSL_TIMING_C
1722 *
1723 * Enable the portable timing interface.
1724 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001725 * Module: library/timing.c
1726 * Caller: library/havege.c
1727 *
1728 * This module is used by the HAVEGE random number generator.
Paul Bakkerecd54fb2013-07-03 14:48:29 +02001729 */
Paul Bakkerdcbfdcc2013-09-10 16:16:50 +02001730#define POLARSSL_TIMING_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001731
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001732/**
1733 * \def POLARSSL_VERSION_C
1734 *
1735 * Enable run-time version information.
1736 *
Paul Bakker0a62cd12011-01-21 11:00:08 +00001737 * Module: library/version.c
1738 *
1739 * This module provides run-time version information.
1740 */
1741#define POLARSSL_VERSION_C
1742
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001743/**
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001744 * \def POLARSSL_X509_USE_C
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001745 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001746 * Enable X.509 core for using certificates.
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001747 *
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001748 * Module: library/x509.c
1749 * Caller: library/x509_crl.c
1750 * library/x509_crt.c
1751 * library/x509_csr.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001752 *
Paul Bakkerc70b9822013-04-07 22:00:46 +02001753 * Requires: POLARSSL_ASN1_PARSE_C, POLARSSL_BIGNUM_C, POLARSSL_OID_C,
Paul Bakker4606c732013-09-15 17:04:23 +02001754 * POLARSSL_PK_PARSE_C
Paul Bakker5690efc2011-05-26 13:16:06 +00001755 *
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001756 * This module is required for the X.509 parsing modules.
Paul Bakker5121ce52009-01-03 21:22:43 +00001757 */
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001758#define POLARSSL_X509_USE_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001759
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001760/**
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001761 * \def POLARSSL_X509_CRT_PARSE_C
Paul Bakkerbdb912d2012-02-13 23:11:30 +00001762 *
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001763 * Enable X.509 certificate parsing.
Paul Bakkerbdb912d2012-02-13 23:11:30 +00001764 *
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001765 * Module: library/x509_crt.c
1766 * Caller: library/ssl_cli.c
1767 * library/ssl_srv.c
1768 * library/ssl_tls.c
1769 *
1770 * Requires: POLARSSL_X509_USE_C
1771 *
1772 * This module is required for X.509 certificate parsing.
1773 */
1774#define POLARSSL_X509_CRT_PARSE_C
1775
1776/**
1777 * \def POLARSSL_X509_CRL_PARSE_C
1778 *
1779 * Enable X.509 CRL parsing.
1780 *
1781 * Module: library/x509_crl.c
1782 * Caller: library/x509_crt.c
1783 *
1784 * Requires: POLARSSL_X509_USE_C
1785 *
1786 * This module is required for X.509 CRL parsing.
1787 */
1788#define POLARSSL_X509_CRL_PARSE_C
1789
1790/**
1791 * \def POLARSSL_X509_CSR_PARSE_C
1792 *
1793 * Enable X.509 Certificate Signing Request (CSR) parsing.
1794 *
1795 * Module: library/x509_csr.c
1796 * Caller: library/x509_crt_write.c
1797 *
1798 * Requires: POLARSSL_X509_USE_C
1799 *
1800 * This module is used for reading X.509 certificate request.
1801 */
1802#define POLARSSL_X509_CSR_PARSE_C
1803
1804/**
1805 * \def POLARSSL_X509_CREATE_C
1806 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001807 * Enable X.509 core for creating certificates.
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001808 *
1809 * Module: library/x509_create.c
Paul Bakkerbdb912d2012-02-13 23:11:30 +00001810 *
Paul Bakker4606c732013-09-15 17:04:23 +02001811 * Requires: POLARSSL_BIGNUM_C, POLARSSL_OID_C, POLARSSL_PK_WRITE_C
Paul Bakkerbdb912d2012-02-13 23:11:30 +00001812 *
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001813 * This module is the basis for creating X.509 certificates and CSRs.
1814 */
1815#define POLARSSL_X509_CREATE_C
1816
1817/**
1818 * \def POLARSSL_X509_CRT_WRITE_C
1819 *
1820 * Enable creating X.509 certificates.
1821 *
1822 * Module: library/x509_crt_write.c
1823 *
1824 * Requires: POLARSSL_CREATE_C
1825 *
1826 * This module is required for X.509 certificate creation.
1827 */
1828#define POLARSSL_X509_CRT_WRITE_C
1829
1830/**
1831 * \def POLARSSL_X509_CSR_WRITE_C
1832 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001833 * Enable creating X.509 Certificate Signing Requests (CSR).
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001834 *
1835 * Module: library/x509_csr_write.c
1836 *
1837 * Requires: POLARSSL_CREATE_C
1838 *
Paul Bakkerbdb912d2012-02-13 23:11:30 +00001839 * This module is required for X.509 certificate request writing.
1840 */
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001841#define POLARSSL_X509_CSR_WRITE_C
Paul Bakkerbdb912d2012-02-13 23:11:30 +00001842
1843/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001844 * \def POLARSSL_XTEA_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001845 *
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001846 * Enable the XTEA block cipher.
1847 *
Paul Bakker7a7c78f2009-01-04 18:15:48 +00001848 * Module: library/xtea.c
1849 * Caller:
1850 */
1851#define POLARSSL_XTEA_C
Manuel Pégourié-Gonnard39d2adb2012-10-31 09:26:55 +01001852
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001853/* \} name SECTION: PolarSSL modules */
Paul Bakker7a7c78f2009-01-04 18:15:48 +00001854
Paul Bakker9bcf16c2013-06-24 19:31:17 +02001855/**
1856 * \name SECTION: Module configuration options
1857 *
1858 * This section allows for the setting of module specific sizes and
1859 * configuration options. The default values are already present in the
1860 * relevant header files and should suffice for the regular use cases.
1861 * Our advice is to enable POLARSSL_CONFIG_OPTIONS and change values here
1862 * only if you have a good reason and know the consequences.
1863 *
1864 * If POLARSSL_CONFIG_OPTIONS is undefined here the options in the module
1865 * header file take precedence.
1866 *
1867 * Please check the respective header file for documentation on these
1868 * parameters (to prevent duplicate documentation).
1869 *
1870 * Uncomment POLARSSL_CONFIG_OPTIONS to enable using the values defined here.
1871 * \{
1872 */
1873//#define POLARSSL_CONFIG_OPTIONS /**< Enable config.h module value configuration */
1874
1875#if defined(POLARSSL_CONFIG_OPTIONS)
1876
1877// MPI / BIGNUM options
1878//
1879#define POLARSSL_MPI_WINDOW_SIZE 6 /**< Maximum windows size used. */
1880#define POLARSSL_MPI_MAX_SIZE 512 /**< Maximum number of bytes for usable MPIs. */
1881
1882// CTR_DRBG options
1883//
Paul Bakkerfb08fd22013-08-27 15:06:26 +02001884#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 +02001885#define CTR_DRBG_RESEED_INTERVAL 10000 /**< Interval before reseed is performed by default */
1886#define CTR_DRBG_MAX_INPUT 256 /**< Maximum number of additional input bytes */
1887#define CTR_DRBG_MAX_REQUEST 1024 /**< Maximum number of requested bytes per call */
1888#define CTR_DRBG_MAX_SEED_INPUT 384 /**< Maximum size of (re)seed buffer */
1889
Paul Bakkere1b665e2013-12-11 16:02:58 +01001890// ECP options
1891//
1892#define POLARSSL_ECP_MAX_BITS 521 /**< Maximum bit size of groups */
1893#define POLARSSL_ECP_WINDOW_SIZE 6 /**< Maximum window size used */
Manuel Pégourié-Gonnard9e4191c2013-12-30 18:41:16 +01001894#define POLARSSL_ECP_FIXED_POINT_OPTIM 1 /**< Enable fixed-point speed-up */
Paul Bakkere1b665e2013-12-11 16:02:58 +01001895
Paul Bakker9bcf16c2013-06-24 19:31:17 +02001896// Entropy options
1897//
1898#define ENTROPY_MAX_SOURCES 20 /**< Maximum number of sources supported */
1899#define ENTROPY_MAX_GATHER 128 /**< Maximum amount requested from entropy sources */
1900
Paul Bakker6e339b52013-07-03 13:37:05 +02001901// Memory options
1902#define MEMORY_ALIGN_MULTIPLE 4 /**< Align on multiples of this value */
1903#define POLARSSL_MEMORY_STDMALLOC malloc /**< Default allocator to use, can be undefined */
1904#define POLARSSL_MEMORY_STDFREE free /**< Default free to use, can be undefined */
1905
Paul Bakker9bcf16c2013-06-24 19:31:17 +02001906// SSL Cache options
1907//
1908#define SSL_CACHE_DEFAULT_TIMEOUT 86400 /**< 1 day */
1909#define SSL_CACHE_DEFAULT_MAX_ENTRIES 50 /**< Maximum entries in cache */
1910
1911// SSL options
1912//
1913#define SSL_MAX_CONTENT_LEN 16384 /**< Size of the input / output buffer */
Paul Bakker606b4ba2013-08-14 16:52:14 +02001914#define SSL_DEFAULT_TICKET_LIFETIME 86400 /**< Lifetime of session tickets (if enabled) */
Paul Bakker9bcf16c2013-06-24 19:31:17 +02001915
1916#endif /* POLARSSL_CONFIG_OPTIONS */
1917
1918/* \} name */
1919
Paul Bakker7ad00f92013-04-18 23:05:25 +02001920/*
1921 * Sanity checks on defines and dependencies
1922 */
Manuel Pégourié-Gonnard92ac76f2013-12-16 17:12:53 +01001923#if defined(POLARSSL_AESNI_C) && !defined(POLARSSL_HAVE_ASM)
1924#error "POLARSSL_AESNI_C defined, but not all prerequisites"
1925#endif
1926
Manuel Pégourié-Gonnard18dc0e22013-10-27 14:35:02 +01001927#if defined(POLARSSL_CERTS_C) && !defined(POLARSSL_PEM_PARSE_C)
1928#error "POLARSSL_CERTS_C defined, but not all prerequisites"
Paul Bakker7ad00f92013-04-18 23:05:25 +02001929#endif
1930
1931#if defined(POLARSSL_CTR_DRBG_C) && !defined(POLARSSL_AES_C)
1932#error "POLARSSL_CTR_DRBG_C defined, but not all prerequisites"
1933#endif
1934
Manuel Pégourié-Gonnard18dc0e22013-10-27 14:35:02 +01001935#if defined(POLARSSL_DHM_C) && !defined(POLARSSL_BIGNUM_C)
1936#error "POLARSSL_DHM_C defined, but not all prerequisites"
1937#endif
1938
Paul Bakker7ad00f92013-04-18 23:05:25 +02001939#if defined(POLARSSL_ECDH_C) && !defined(POLARSSL_ECP_C)
1940#error "POLARSSL_ECDH_C defined, but not all prerequisites"
1941#endif
1942
Manuel Pégourié-Gonnard4846f5e2013-08-08 14:36:15 +02001943#if defined(POLARSSL_ECDSA_C) && \
1944 ( !defined(POLARSSL_ECP_C) || \
1945 !defined(POLARSSL_ASN1_PARSE_C) || \
1946 !defined(POLARSSL_ASN1_WRITE_C) )
Paul Bakker7ad00f92013-04-18 23:05:25 +02001947#error "POLARSSL_ECDSA_C defined, but not all prerequisites"
1948#endif
1949
Manuel Pégourié-Gonnard5b1a5732014-01-07 16:46:17 +01001950#if defined(POLARSSL_ECDSA_DETERMINISTIC) && !defined(POLARSSL_MD_C)
1951#error "POLARSSL_ECDSA_DETERMINISTIC defined, but not all prerequisites"
1952#endif
1953
Manuel Pégourié-Gonnardc59c9c12013-10-27 14:04:59 +01001954#if defined(POLARSSL_ECP_C) && ( !defined(POLARSSL_BIGNUM_C) || ( \
1955 !defined(POLARSSL_ECP_DP_SECP192R1_ENABLED) && \
1956 !defined(POLARSSL_ECP_DP_SECP224R1_ENABLED) && \
1957 !defined(POLARSSL_ECP_DP_SECP256R1_ENABLED) && \
1958 !defined(POLARSSL_ECP_DP_SECP384R1_ENABLED) && \
1959 !defined(POLARSSL_ECP_DP_SECP521R1_ENABLED) && \
1960 !defined(POLARSSL_ECP_DP_BP256R1_ENABLED) && \
1961 !defined(POLARSSL_ECP_DP_BP384R1_ENABLED) && \
1962 !defined(POLARSSL_ECP_DP_BP512R1_ENABLED) ) )
Paul Bakker7ad00f92013-04-18 23:05:25 +02001963#error "POLARSSL_ECP_C defined, but not all prerequisites"
1964#endif
1965
Paul Bakkerfb08fd22013-08-27 15:06:26 +02001966#if defined(POLARSSL_ENTROPY_C) && (!defined(POLARSSL_SHA512_C) && \
1967 !defined(POLARSSL_SHA256_C))
Paul Bakker7ad00f92013-04-18 23:05:25 +02001968#error "POLARSSL_ENTROPY_C defined, but not all prerequisites"
1969#endif
Paul Bakkerfb08fd22013-08-27 15:06:26 +02001970#if defined(POLARSSL_ENTROPY_C) && defined(POLARSSL_SHA512_C) && \
1971 defined(POLARSSL_CONFIG_OPTIONS) && (CTR_DRBG_ENTROPY_LEN > 64)
1972#error "CTR_DRBG_ENTROPY_LEN value too high"
1973#endif
1974#if defined(POLARSSL_ENTROPY_C) && !defined(POLARSSL_SHA512_C) && \
1975 defined(POLARSSL_CONFIG_OPTIONS) && (CTR_DRBG_ENTROPY_LEN > 32)
1976#error "CTR_DRBG_ENTROPY_LEN value too high"
1977#endif
Paul Bakker7ad00f92013-04-18 23:05:25 +02001978
Manuel Pégourié-Gonnard7bd8a992013-10-24 13:39:39 +02001979#if defined(POLARSSL_GCM_C) && ( \
1980 !defined(POLARSSL_AES_C) && !defined(POLARSSL_CAMELLIA_C) )
Paul Bakker7ad00f92013-04-18 23:05:25 +02001981#error "POLARSSL_GCM_C defined, but not all prerequisites"
1982#endif
1983
Paul Bakkerecd54fb2013-07-03 14:48:29 +02001984#if defined(POLARSSL_HAVEGE_C) && !defined(POLARSSL_TIMING_C)
1985#error "POLARSSL_HAVEGE_C defined, but not all prerequisites"
1986#endif
1987
Manuel Pégourié-Gonnard25781b22013-12-11 16:17:10 +01001988#if defined(POLARSSL_KEY_EXCHANGE_ECDH_ECDSA_ENABLED) && \
1989 ( !defined(POLARSSL_ECDH_C) || !defined(POLARSSL_X509_CRT_PARSE_C) )
1990#error "POLARSSL_KEY_EXCHANGE_ECDH_ECDSA_ENABLED defined, but not all prerequisites"
1991#endif
1992
1993#if defined(POLARSSL_KEY_EXCHANGE_ECDH_RSA_ENABLED) && \
1994 ( !defined(POLARSSL_ECDH_C) || !defined(POLARSSL_X509_CRT_PARSE_C) )
1995#error "POLARSSL_KEY_EXCHANGE_ECDH_RSA_ENABLED defined, but not all prerequisites"
1996#endif
1997
Paul Bakkere07f41d2013-04-19 09:08:57 +02001998#if defined(POLARSSL_KEY_EXCHANGE_DHE_PSK_ENABLED) && !defined(POLARSSL_DHM_C)
1999#error "POLARSSL_KEY_EXCHANGE_DHE_PSK_ENABLED defined, but not all prerequisites"
2000#endif
2001
Manuel Pégourié-Gonnard3ce3bbd2013-10-11 16:53:50 +02002002#if defined(POLARSSL_KEY_EXCHANGE_ECDHE_PSK_ENABLED) && \
2003 !defined(POLARSSL_ECDH_C)
2004#error "POLARSSL_KEY_EXCHANGE_ECDHE_PSK_ENABLED defined, but not all prerequisites"
2005#endif
2006
Paul Bakkere07f41d2013-04-19 09:08:57 +02002007#if defined(POLARSSL_KEY_EXCHANGE_DHE_RSA_ENABLED) && \
2008 ( !defined(POLARSSL_DHM_C) || !defined(POLARSSL_RSA_C) || \
Manuel Pégourié-Gonnardcbf3ef32013-09-23 12:20:02 +02002009 !defined(POLARSSL_X509_CRT_PARSE_C) || !defined(POLARSSL_PKCS1_V15) )
Paul Bakkere07f41d2013-04-19 09:08:57 +02002010#error "POLARSSL_KEY_EXCHANGE_DHE_RSA_ENABLED defined, but not all prerequisites"
2011#endif
2012
2013#if defined(POLARSSL_KEY_EXCHANGE_ECDHE_RSA_ENABLED) && \
2014 ( !defined(POLARSSL_ECDH_C) || !defined(POLARSSL_RSA_C) || \
Manuel Pégourié-Gonnardcbf3ef32013-09-23 12:20:02 +02002015 !defined(POLARSSL_X509_CRT_PARSE_C) || !defined(POLARSSL_PKCS1_V15) )
Paul Bakkere07f41d2013-04-19 09:08:57 +02002016#error "POLARSSL_KEY_EXCHANGE_ECDHE_RSA_ENABLED defined, but not all prerequisites"
2017#endif
2018
Manuel Pégourié-Gonnard32ea60a2013-08-17 17:39:04 +02002019#if defined(POLARSSL_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED) && \
2020 ( !defined(POLARSSL_ECDH_C) || !defined(POLARSSL_ECDSA_C) || \
Manuel Pégourié-Gonnardcbf3ef32013-09-23 12:20:02 +02002021 !defined(POLARSSL_X509_CRT_PARSE_C) )
Manuel Pégourié-Gonnard32ea60a2013-08-17 17:39:04 +02002022#error "POLARSSL_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED defined, but not all prerequisites"
2023#endif
2024
Paul Bakkere07f41d2013-04-19 09:08:57 +02002025#if defined(POLARSSL_KEY_EXCHANGE_RSA_PSK_ENABLED) && \
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002026 ( !defined(POLARSSL_RSA_C) || !defined(POLARSSL_X509_CRT_PARSE_C) ||\
Manuel Pégourié-Gonnardcbf3ef32013-09-23 12:20:02 +02002027 !defined(POLARSSL_PKCS1_V15) )
Paul Bakkere07f41d2013-04-19 09:08:57 +02002028#error "POLARSSL_KEY_EXCHANGE_RSA_PSK_ENABLED defined, but not all prerequisites"
2029#endif
2030
2031#if defined(POLARSSL_KEY_EXCHANGE_RSA_ENABLED) && \
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002032 ( !defined(POLARSSL_RSA_C) || !defined(POLARSSL_X509_CRT_PARSE_C) ||\
Manuel Pégourié-Gonnardcbf3ef32013-09-23 12:20:02 +02002033 !defined(POLARSSL_PKCS1_V15) )
Paul Bakkere07f41d2013-04-19 09:08:57 +02002034#error "POLARSSL_KEY_EXCHANGE_RSA_ENABLED defined, but not all prerequisites"
2035#endif
2036
Paul Bakker6e339b52013-07-03 13:37:05 +02002037#if defined(POLARSSL_MEMORY_BUFFER_ALLOC_C) && !defined(POLARSSL_MEMORY_C)
2038#error "POLARSSL_MEMORY_BUFFER_ALLOC_C defined, but not all prerequisites"
2039#endif
2040
Manuel Pégourié-Gonnard92ac76f2013-12-16 17:12:53 +01002041#if defined(POLARSSL_PADLOCK_C) && !defined(POLARSSL_HAVE_ASM)
2042#error "POLARSSL_PADLOCK_C defined, but not all prerequisites"
2043#endif
2044
Paul Bakker7ad00f92013-04-18 23:05:25 +02002045#if defined(POLARSSL_PBKDF2_C) && !defined(POLARSSL_MD_C)
2046#error "POLARSSL_PBKDF2_C defined, but not all prerequisites"
2047#endif
2048
Paul Bakkercff68422013-09-15 20:43:33 +02002049#if defined(POLARSSL_PEM_PARSE_C) && !defined(POLARSSL_BASE64_C)
2050#error "POLARSSL_PEM_PARSE_C defined, but not all prerequisites"
2051#endif
2052
2053#if defined(POLARSSL_PEM_WRITE_C) && !defined(POLARSSL_BASE64_C)
2054#error "POLARSSL_PEM_WRITE_C defined, but not all prerequisites"
Paul Bakker7ad00f92013-04-18 23:05:25 +02002055#endif
2056
Paul Bakker4606c732013-09-15 17:04:23 +02002057#if defined(POLARSSL_PK_PARSE_C) && !defined(POLARSSL_PK_C)
2058#error "POLARSSL_PK_PARSE_C defined, but not all prerequisites"
2059#endif
2060
2061#if defined(POLARSSL_PK_WRITE_C) && !defined(POLARSSL_PK_C)
2062#error "POLARSSL_PK_WRITE_C defined, but not all prerequisites"
2063#endif
2064
Manuel Pégourié-Gonnard51be5592013-08-22 13:35:53 +02002065#if defined(POLARSSL_PKCS11_C) && !defined(POLARSSL_PK_C)
Paul Bakker7ad00f92013-04-18 23:05:25 +02002066#error "POLARSSL_PKCS11_C defined, but not all prerequisites"
2067#endif
2068
2069#if defined(POLARSSL_RSA_C) && ( !defined(POLARSSL_BIGNUM_C) || \
2070 !defined(POLARSSL_OID_C) )
2071#error "POLARSSL_RSA_C defined, but not all prerequisites"
2072#endif
2073
Manuel Pégourié-Gonnard7c3291e2013-10-27 14:29:51 +01002074#if defined(POLARSSL_SSL_PROTO_SSL3) && ( !defined(POLARSSL_MD5_C) || \
2075 !defined(POLARSSL_SHA1_C) )
2076#error "POLARSSL_SSL_PROTO_SSL3 defined, but not all prerequisites"
2077#endif
2078
2079#if defined(POLARSSL_SSL_PROTO_TLS1) && ( !defined(POLARSSL_MD5_C) || \
2080 !defined(POLARSSL_SHA1_C) )
2081#error "POLARSSL_SSL_PROTO_TLS1 defined, but not all prerequisites"
2082#endif
2083
2084#if defined(POLARSSL_SSL_PROTO_TLS1_1) && ( !defined(POLARSSL_MD5_C) || \
2085 !defined(POLARSSL_SHA1_C) )
2086#error "POLARSSL_SSL_PROTO_TLS1_1 defined, but not all prerequisites"
2087#endif
2088
2089#if defined(POLARSSL_SSL_PROTO_TLS1_2) && ( !defined(POLARSSL_SHA1_C) && \
2090 !defined(POLARSSL_SHA256_C) && !defined(POLARSSL_SHA512_C) )
2091#error "POLARSSL_SSL_PROTO_TLS1_2 defined, but not all prerequisites"
2092#endif
2093
Paul Bakker7ad00f92013-04-18 23:05:25 +02002094#if defined(POLARSSL_SSL_CLI_C) && !defined(POLARSSL_SSL_TLS_C)
2095#error "POLARSSL_SSL_CLI_C defined, but not all prerequisites"
2096#endif
2097
Paul Bakker577e0062013-08-28 11:57:20 +02002098#if defined(POLARSSL_SSL_TLS_C) && ( !defined(POLARSSL_CIPHER_C) || \
Manuel Pégourié-Gonnard1a483832013-09-20 12:29:15 +02002099 !defined(POLARSSL_MD_C) )
Paul Bakker7ad00f92013-04-18 23:05:25 +02002100#error "POLARSSL_SSL_TLS_C defined, but not all prerequisites"
2101#endif
2102
2103#if defined(POLARSSL_SSL_SRV_C) && !defined(POLARSSL_SSL_TLS_C)
2104#error "POLARSSL_SSL_SRV_C defined, but not all prerequisites"
2105#endif
2106
Paul Bakkerd2f068e2013-08-27 21:19:20 +02002107#if defined(POLARSSL_SSL_TLS_C) && (!defined(POLARSSL_SSL_PROTO_SSL3) && \
2108 !defined(POLARSSL_SSL_PROTO_TLS1) && !defined(POLARSSL_SSL_PROTO_TLS1_1) && \
2109 !defined(POLARSSL_SSL_PROTO_TLS1_2))
2110#error "POLARSSL_SSL_TLS_C defined, but no protocols are active"
2111#endif
2112
2113#if defined(POLARSSL_SSL_TLS_C) && (defined(POLARSSL_SSL_PROTO_SSL3) && \
2114 defined(POLARSSL_SSL_PROTO_TLS1_1) && !defined(POLARSSL_SSL_PROTO_TLS1))
2115#error "Illegal protocol selection"
2116#endif
2117
2118#if defined(POLARSSL_SSL_TLS_C) && (defined(POLARSSL_SSL_PROTO_TLS1) && \
2119 defined(POLARSSL_SSL_PROTO_TLS1_2) && !defined(POLARSSL_SSL_PROTO_TLS1_1))
2120#error "Illegal protocol selection"
2121#endif
2122
2123#if defined(POLARSSL_SSL_TLS_C) && (defined(POLARSSL_SSL_PROTO_SSL3) && \
2124 defined(POLARSSL_SSL_PROTO_TLS1_2) && (!defined(POLARSSL_SSL_PROTO_TLS1) || \
2125 !defined(POLARSSL_SSL_PROTO_TLS1_1)))
2126#error "Illegal protocol selection"
2127#endif
2128
Paul Bakker59da0a42013-08-19 13:27:17 +02002129#if defined(POLARSSL_SSL_SESSION_TICKETS) && defined(POLARSSL_SSL_TLS_C) && \
Manuel Pégourié-Gonnard92cb1d32013-09-13 16:24:20 +02002130 ( !defined(POLARSSL_AES_C) || !defined(POLARSSL_SHA256_C) || \
2131 !defined(POLARSSL_CIPHER_MODE_CBC) )
Paul Bakker59da0a42013-08-19 13:27:17 +02002132#error "POLARSSL_SSL_SESSION_TICKETS_C defined, but not all prerequisites"
2133#endif
2134
Paul Bakker2466d932013-09-28 14:40:38 +02002135#if defined(POLARSSL_THREADING_PTHREAD)
2136#if !defined(POLARSSL_THREADING_C) || defined(POLARSSL_THREADING_IMPL)
2137#error "POLARSSL_THREADING_PTHREAD defined, but not all prerequisites"
2138#endif
2139#define POLARSSL_THREADING_IMPL
2140#endif
2141
2142#if defined(POLARSSL_THREADING_ALT)
2143#if !defined(POLARSSL_THREADING_C) || defined(POLARSSL_THREADING_IMPL)
2144#error "POLARSSL_THREADING_ALT defined, but not all prerequisites"
2145#endif
2146#define POLARSSL_THREADING_IMPL
2147#endif
2148
2149#if defined(POLARSSL_THREADING_C) && !defined(POLARSSL_THREADING_IMPL)
2150#error "POLARSSL_THREADING_C defined, single threading implementation required"
2151#endif
2152#undef POLARSSL_THREADING_IMPL
2153
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002154#if defined(POLARSSL_X509_USE_C) && ( !defined(POLARSSL_BIGNUM_C) || \
Paul Bakker7ad00f92013-04-18 23:05:25 +02002155 !defined(POLARSSL_OID_C) || !defined(POLARSSL_ASN1_PARSE_C) || \
Paul Bakker4606c732013-09-15 17:04:23 +02002156 !defined(POLARSSL_PK_PARSE_C) )
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002157#error "POLARSSL_X509_USE_C defined, but not all prerequisites"
Paul Bakker7ad00f92013-04-18 23:05:25 +02002158#endif
2159
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002160#if defined(POLARSSL_X509_CREATE_C) && ( !defined(POLARSSL_BIGNUM_C) || \
2161 !defined(POLARSSL_OID_C) || !defined(POLARSSL_ASN1_WRITE_C) || \
2162 !defined(POLARSSL_PK_WRITE_C) )
2163#error "POLARSSL_X509_CREATE_C defined, but not all prerequisites"
2164#endif
2165
2166#if defined(POLARSSL_X509_CRT_PARSE_C) && ( !defined(POLARSSL_X509_USE_C) )
2167#error "POLARSSL_X509_CRT_PARSE_C defined, but not all prerequisites"
2168#endif
2169
2170#if defined(POLARSSL_X509_CRL_PARSE_C) && ( !defined(POLARSSL_X509_USE_C) )
2171#error "POLARSSL_X509_CRL_PARSE_C defined, but not all prerequisites"
2172#endif
2173
2174#if defined(POLARSSL_X509_CSR_PARSE_C) && ( !defined(POLARSSL_X509_USE_C) )
2175#error "POLARSSL_X509_CSR_PARSE_C defined, but not all prerequisites"
2176#endif
2177
2178#if defined(POLARSSL_X509_CRT_WRITE_C) && ( !defined(POLARSSL_X509_CREATE_C) )
2179#error "POLARSSL_X509_CRT_WRITE_C defined, but not all prerequisites"
2180#endif
2181
2182#if defined(POLARSSL_X509_CSR_WRITE_C) && ( !defined(POLARSSL_X509_CREATE_C) )
2183#error "POLARSSL_X509_CSR_WRITE_C defined, but not all prerequisites"
Paul Bakker7ad00f92013-04-18 23:05:25 +02002184#endif
2185
Paul Bakker5121ce52009-01-03 21:22:43 +00002186#endif /* config.h */