blob: 283e294a764accfa70b3313ea735d80346769399 [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/**
Paul Bakkerd4a56ec2013-04-16 18:05:29 +0200282 * \def POLARSSL_KEY_EXCHANGE_PSK_ENABLED
283 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200284 * Enable the PSK based ciphersuite modes in SSL / TLS.
Paul Bakkerd4a56ec2013-04-16 18:05:29 +0200285 *
Paul Bakkere07f41d2013-04-19 09:08:57 +0200286 * This enables the following ciphersuites (if other requisites are
287 * enabled as well):
Paul Bakker45bda902013-04-19 22:28:21 +0200288 * TLS_PSK_WITH_AES_256_GCM_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200289 * TLS_PSK_WITH_AES_256_CBC_SHA384
290 * TLS_PSK_WITH_AES_256_CBC_SHA
291 * TLS_PSK_WITH_CAMELLIA_256_GCM_SHA384
292 * TLS_PSK_WITH_CAMELLIA_256_CBC_SHA384
293 * TLS_PSK_WITH_AES_128_GCM_SHA256
294 * TLS_PSK_WITH_AES_128_CBC_SHA256
295 * TLS_PSK_WITH_AES_128_CBC_SHA
296 * TLS_PSK_WITH_CAMELLIA_128_GCM_SHA256
297 * TLS_PSK_WITH_CAMELLIA_128_CBC_SHA256
298 * TLS_PSK_WITH_3DES_EDE_CBC_SHA
299 * TLS_PSK_WITH_RC4_128_SHA
Paul Bakkerd4a56ec2013-04-16 18:05:29 +0200300 */
301#define POLARSSL_KEY_EXCHANGE_PSK_ENABLED
302
303/**
Paul Bakkere07f41d2013-04-19 09:08:57 +0200304 * \def POLARSSL_KEY_EXCHANGE_DHE_PSK_ENABLED
305 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200306 * Enable the DHE-PSK based ciphersuite modes in SSL / TLS.
Paul Bakkere07f41d2013-04-19 09:08:57 +0200307 *
308 * Requires: POLARSSL_DHM_C
309 *
310 * This enables the following ciphersuites (if other requisites are
311 * enabled as well):
Paul Bakker45bda902013-04-19 22:28:21 +0200312 * TLS_DHE_PSK_WITH_AES_256_GCM_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200313 * TLS_DHE_PSK_WITH_AES_256_CBC_SHA384
314 * TLS_DHE_PSK_WITH_AES_256_CBC_SHA
315 * TLS_DHE_PSK_WITH_CAMELLIA_256_GCM_SHA384
316 * TLS_DHE_PSK_WITH_CAMELLIA_256_CBC_SHA384
317 * TLS_DHE_PSK_WITH_AES_128_GCM_SHA256
318 * TLS_DHE_PSK_WITH_AES_128_CBC_SHA256
319 * TLS_DHE_PSK_WITH_AES_128_CBC_SHA
320 * TLS_DHE_PSK_WITH_CAMELLIA_128_GCM_SHA256
321 * TLS_DHE_PSK_WITH_CAMELLIA_128_CBC_SHA256
322 * TLS_DHE_PSK_WITH_3DES_EDE_CBC_SHA
323 * TLS_DHE_PSK_WITH_RC4_128_SHA
Paul Bakkere07f41d2013-04-19 09:08:57 +0200324 */
Paul Bakker48f7a5d2013-04-19 14:30:58 +0200325#define POLARSSL_KEY_EXCHANGE_DHE_PSK_ENABLED
Paul Bakkere07f41d2013-04-19 09:08:57 +0200326
327/**
Manuel Pégourié-Gonnard3ce3bbd2013-10-11 16:53:50 +0200328 * \def POLARSSL_KEY_EXCHANGE_ECDHE_PSK_ENABLED
329 *
330 * Enable the ECDHE-PSK based ciphersuite modes in SSL / TLS.
331 *
332 * Requires: POLARSSL_ECDH_C
333 *
334 * This enables the following ciphersuites (if other requisites are
335 * enabled as well):
Manuel Pégourié-Gonnard225d6aa2013-10-11 19:07:56 +0200336 * TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200337 * TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA
Manuel Pégourié-Gonnard225d6aa2013-10-11 19:07:56 +0200338 * TLS_ECDHE_PSK_WITH_CAMELLIA_256_CBC_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200339 * TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA256
340 * TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA
341 * TLS_ECDHE_PSK_WITH_CAMELLIA_128_CBC_SHA256
342 * TLS_ECDHE_PSK_WITH_3DES_EDE_CBC_SHA
343 * TLS_ECDHE_PSK_WITH_RC4_128_SHA
Manuel Pégourié-Gonnard3ce3bbd2013-10-11 16:53:50 +0200344 */
345#define POLARSSL_KEY_EXCHANGE_ECDHE_PSK_ENABLED
346
347/**
Paul Bakkere07f41d2013-04-19 09:08:57 +0200348 * \def POLARSSL_KEY_EXCHANGE_RSA_PSK_ENABLED
349 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200350 * Enable the RSA-PSK based ciphersuite modes in SSL / TLS.
Manuel Pégourié-Gonnard0fae60b2013-10-14 17:39:48 +0200351 *
Manuel Pégourié-Gonnard1032c1d2013-09-18 17:18:34 +0200352 * Requires: POLARSSL_RSA_C, POLARSSL_PKCS1_V15,
Manuel Pégourié-Gonnardcbf3ef32013-09-23 12:20:02 +0200353 * POLARSSL_X509_CRT_PARSE_C
Paul Bakkere07f41d2013-04-19 09:08:57 +0200354 *
355 * This enables the following ciphersuites (if other requisites are
356 * enabled as well):
Paul Bakker45bda902013-04-19 22:28:21 +0200357 * TLS_RSA_PSK_WITH_AES_256_GCM_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200358 * TLS_RSA_PSK_WITH_AES_256_CBC_SHA384
359 * TLS_RSA_PSK_WITH_AES_256_CBC_SHA
360 * TLS_RSA_PSK_WITH_CAMELLIA_256_GCM_SHA384
361 * TLS_RSA_PSK_WITH_CAMELLIA_256_CBC_SHA384
362 * TLS_RSA_PSK_WITH_AES_128_GCM_SHA256
363 * TLS_RSA_PSK_WITH_AES_128_CBC_SHA256
364 * TLS_RSA_PSK_WITH_AES_128_CBC_SHA
365 * TLS_RSA_PSK_WITH_CAMELLIA_128_GCM_SHA256
366 * TLS_RSA_PSK_WITH_CAMELLIA_128_CBC_SHA256
367 * TLS_RSA_PSK_WITH_3DES_EDE_CBC_SHA
368 * TLS_RSA_PSK_WITH_RC4_128_SHA
Paul Bakkere07f41d2013-04-19 09:08:57 +0200369 */
Manuel Pégourié-Gonnard0fae60b2013-10-14 17:39:48 +0200370#define POLARSSL_KEY_EXCHANGE_RSA_PSK_ENABLED
Paul Bakkere07f41d2013-04-19 09:08:57 +0200371
372/**
373 * \def POLARSSL_KEY_EXCHANGE_RSA_ENABLED
374 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200375 * Enable the RSA-only based ciphersuite modes in SSL / TLS.
Paul Bakkere07f41d2013-04-19 09:08:57 +0200376 *
Manuel Pégourié-Gonnard1032c1d2013-09-18 17:18:34 +0200377 * Requires: POLARSSL_RSA_C, POLARSSL_PKCS1_V15,
Manuel Pégourié-Gonnardcbf3ef32013-09-23 12:20:02 +0200378 * POLARSSL_X509_CRT_PARSE_C
Paul Bakkere07f41d2013-04-19 09:08:57 +0200379 *
380 * This enables the following ciphersuites (if other requisites are
381 * enabled as well):
Paul Bakkere07f41d2013-04-19 09:08:57 +0200382 * TLS_RSA_WITH_AES_256_GCM_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200383 * TLS_RSA_WITH_AES_256_CBC_SHA256
384 * TLS_RSA_WITH_AES_256_CBC_SHA
385 * TLS_RSA_WITH_CAMELLIA_256_GCM_SHA384
Paul Bakkere07f41d2013-04-19 09:08:57 +0200386 * TLS_RSA_WITH_CAMELLIA_256_CBC_SHA256
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200387 * TLS_RSA_WITH_CAMELLIA_256_CBC_SHA
388 * TLS_RSA_WITH_AES_128_GCM_SHA256
389 * TLS_RSA_WITH_AES_128_CBC_SHA256
390 * TLS_RSA_WITH_AES_128_CBC_SHA
391 * TLS_RSA_WITH_CAMELLIA_128_GCM_SHA256
392 * TLS_RSA_WITH_CAMELLIA_128_CBC_SHA256
393 * TLS_RSA_WITH_CAMELLIA_128_CBC_SHA
Paul Bakkere07f41d2013-04-19 09:08:57 +0200394 * TLS_RSA_WITH_3DES_EDE_CBC_SHA
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200395 * TLS_RSA_WITH_RC4_128_SHA
396 * TLS_RSA_WITH_RC4_128_MD5
Paul Bakkere07f41d2013-04-19 09:08:57 +0200397 */
398#define POLARSSL_KEY_EXCHANGE_RSA_ENABLED
399
400/**
401 * \def POLARSSL_KEY_EXCHANGE_DHE_RSA_ENABLED
402 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200403 * Enable the DHE-RSA based ciphersuite modes in SSL / TLS.
Paul Bakkere07f41d2013-04-19 09:08:57 +0200404 *
Manuel Pégourié-Gonnard1032c1d2013-09-18 17:18:34 +0200405 * Requires: POLARSSL_DHM_C, POLARSSL_RSA_C, POLARSSL_PKCS1_V15,
Manuel Pégourié-Gonnardcbf3ef32013-09-23 12:20:02 +0200406 * POLARSSL_X509_CRT_PARSE_C
Paul Bakkere07f41d2013-04-19 09:08:57 +0200407 *
408 * This enables the following ciphersuites (if other requisites are
409 * enabled as well):
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200410 * TLS_DHE_RSA_WITH_AES_256_GCM_SHA384
Paul Bakkere07f41d2013-04-19 09:08:57 +0200411 * TLS_DHE_RSA_WITH_AES_256_CBC_SHA256
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200412 * TLS_DHE_RSA_WITH_AES_256_CBC_SHA
413 * TLS_DHE_RSA_WITH_CAMELLIA_256_GCM_SHA384
Paul Bakkere07f41d2013-04-19 09:08:57 +0200414 * TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA256
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200415 * TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA
416 * TLS_DHE_RSA_WITH_AES_128_GCM_SHA256
417 * TLS_DHE_RSA_WITH_AES_128_CBC_SHA256
418 * TLS_DHE_RSA_WITH_AES_128_CBC_SHA
419 * TLS_DHE_RSA_WITH_CAMELLIA_128_GCM_SHA256
420 * TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA256
421 * TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA
Paul Bakkere07f41d2013-04-19 09:08:57 +0200422 * TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA
423 */
424#define POLARSSL_KEY_EXCHANGE_DHE_RSA_ENABLED
425
426/**
427 * \def POLARSSL_KEY_EXCHANGE_ECDHE_RSA_ENABLED
428 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200429 * Enable the ECDHE-RSA based ciphersuite modes in SSL / TLS.
Paul Bakkere07f41d2013-04-19 09:08:57 +0200430 *
Manuel Pégourié-Gonnard1032c1d2013-09-18 17:18:34 +0200431 * Requires: POLARSSL_ECDH_C, POLARSSL_RSA_C, POLARSSL_PKCS1_V15,
Manuel Pégourié-Gonnardcbf3ef32013-09-23 12:20:02 +0200432 * POLARSSL_X509_CRT_PARSE_C
Paul Bakkere07f41d2013-04-19 09:08:57 +0200433 *
434 * This enables the following ciphersuites (if other requisites are
435 * enabled as well):
Paul Bakkere07f41d2013-04-19 09:08:57 +0200436 * TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200437 * TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384
438 * TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA
439 * TLS_ECDHE_RSA_WITH_CAMELLIA_256_GCM_SHA384
Paul Bakkere07f41d2013-04-19 09:08:57 +0200440 * TLS_ECDHE_RSA_WITH_CAMELLIA_256_CBC_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200441 * TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
442 * TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256
443 * TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA
444 * TLS_ECDHE_RSA_WITH_CAMELLIA_128_GCM_SHA256
445 * TLS_ECDHE_RSA_WITH_CAMELLIA_128_CBC_SHA256
446 * TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA
447 * TLS_ECDHE_RSA_WITH_RC4_128_SHA
Paul Bakkere07f41d2013-04-19 09:08:57 +0200448 */
449#define POLARSSL_KEY_EXCHANGE_ECDHE_RSA_ENABLED
450
451/**
Manuel Pégourié-Gonnard32ea60a2013-08-17 17:39:04 +0200452 * \def POLARSSL_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED
453 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200454 * Enable the ECDHE-ECDSA based ciphersuite modes in SSL / TLS.
Manuel Pégourié-Gonnard32ea60a2013-08-17 17:39:04 +0200455 *
Manuel Pégourié-Gonnard1032c1d2013-09-18 17:18:34 +0200456 * Requires: POLARSSL_ECDH_C, POLARSSL_ECDSA_C, POLARSSL_X509_CRT_PARSE_C,
Manuel Pégourié-Gonnard32ea60a2013-08-17 17:39:04 +0200457 *
458 * This enables the following ciphersuites (if other requisites are
459 * enabled as well):
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200460 * TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384
461 * TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384
462 * TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA
463 * TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_GCM_SHA384
464 * TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_CBC_SHA384
465 * TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
466 * TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256
467 * TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA
468 * TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_GCM_SHA256
469 * TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_CBC_SHA256
470 * TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA
471 * TLS_ECDHE_ECDSA_WITH_RC4_128_SHA
Manuel Pégourié-Gonnard32ea60a2013-08-17 17:39:04 +0200472 */
473#define POLARSSL_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED
474
475/**
Manuel Pégourié-Gonnard25781b22013-12-11 16:17:10 +0100476 * \def POLARSSL_KEY_EXCHANGE_ECDH_ECDSA_ENABLED
477 *
478 * Enable the ECDH-ECDSA based ciphersuite modes in SSL / TLS.
479 *
480 * Requires: POLARSSL_ECDH_C, POLARSSL_X509_CRT_PARSE_C
481 *
482 * This enables the following ciphersuites (if other requisites are
483 * enabled as well):
484 * TLS_ECDH_ECDSA_WITH_RC4_128_SHA
485 * TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA
486 * TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA
487 * TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA
488 * TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256
489 * TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384
490 * TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256
491 * TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384
492 * TLS_ECDH_ECDSA_WITH_CAMELLIA_128_CBC_SHA256
493 * TLS_ECDH_ECDSA_WITH_CAMELLIA_256_CBC_SHA384
494 * TLS_ECDH_ECDSA_WITH_CAMELLIA_128_GCM_SHA256
495 * TLS_ECDH_ECDSA_WITH_CAMELLIA_256_GCM_SHA384
496 */
497#define POLARSSL_KEY_EXCHANGE_ECDH_ECDSA_ENABLED
498
499/**
500 * \def POLARSSL_KEY_EXCHANGE_ECDH_RSA_ENABLED
501 *
502 * Enable the ECDH-RSA based ciphersuite modes in SSL / TLS.
503 *
504 * Requires: POLARSSL_ECDH_C, POLARSSL_X509_CRT_PARSE_C
505 *
506 * This enables the following ciphersuites (if other requisites are
507 * enabled as well):
508 * TLS_ECDH_RSA_WITH_RC4_128_SHA
509 * TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA
510 * TLS_ECDH_RSA_WITH_AES_128_CBC_SHA
511 * TLS_ECDH_RSA_WITH_AES_256_CBC_SHA
512 * TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256
513 * TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384
514 * TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256
515 * TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384
516 * TLS_ECDH_RSA_WITH_CAMELLIA_128_CBC_SHA256
517 * TLS_ECDH_RSA_WITH_CAMELLIA_256_CBC_SHA384
518 * TLS_ECDH_RSA_WITH_CAMELLIA_128_GCM_SHA256
519 * TLS_ECDH_RSA_WITH_CAMELLIA_256_GCM_SHA384
520 */
521#define POLARSSL_KEY_EXCHANGE_ECDH_RSA_ENABLED
522
523/**
Paul Bakkere2ab84f2013-06-29 18:24:32 +0200524 * \def POLARSSL_ERROR_STRERROR_BC
525 *
526 * Make available the backward compatible error_strerror() next to the
527 * current polarssl_strerror().
528 *
529 * Disable if you run into name conflicts and want to really remove the
530 * error_strerror()
531 */
532#define POLARSSL_ERROR_STRERROR_BC
533
534/**
Paul Bakker8fe40dc2013-02-02 12:43:08 +0100535 * \def POLARSSL_ERROR_STRERROR_DUMMY
536 *
Paul Bakkereba3ccf2013-09-09 15:55:12 +0200537 * Enable a dummy error function to make use of polarssl_strerror() in
Paul Bakker8fe40dc2013-02-02 12:43:08 +0100538 * third party libraries easier.
539 *
540 * Disable if you run into name conflicts and want to really remove the
Paul Bakkereba3ccf2013-09-09 15:55:12 +0200541 * polarssl_strerror()
Paul Bakker8fe40dc2013-02-02 12:43:08 +0100542 */
543#define POLARSSL_ERROR_STRERROR_DUMMY
544
545/**
Paul Bakker15566e42011-04-24 21:19:15 +0000546 * \def POLARSSL_GENPRIME
Paul Bakkerf3b86c12011-01-27 15:24:17 +0000547 *
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +0200548 * Enable the prime-number generation code.
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200549 *
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +0200550 * Requires: POLARSSL_BIGNUM_C
Paul Bakker5121ce52009-01-03 21:22:43 +0000551 */
Paul Bakker15566e42011-04-24 21:19:15 +0000552#define POLARSSL_GENPRIME
Paul Bakker5121ce52009-01-03 21:22:43 +0000553
Paul Bakkerf3b86c12011-01-27 15:24:17 +0000554/**
Paul Bakker335db3f2011-04-25 15:28:35 +0000555 * \def POLARSSL_FS_IO
556 *
557 * Enable functions that use the filesystem.
558 */
559#define POLARSSL_FS_IO
560
561/**
Paul Bakker43655f42011-12-15 20:11:16 +0000562 * \def POLARSSL_NO_DEFAULT_ENTROPY_SOURCES
563 *
564 * Do not add default entropy sources. These are the platform specific,
565 * hardclock and HAVEGE based poll functions.
566 *
567 * This is useful to have more control over the added entropy sources in an
568 * application.
569 *
570 * Uncomment this macro to prevent loading of default entropy functions.
Paul Bakker43655f42011-12-15 20:11:16 +0000571 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200572//#define POLARSSL_NO_DEFAULT_ENTROPY_SOURCES
Paul Bakker43655f42011-12-15 20:11:16 +0000573
574/**
Paul Bakker6083fd22011-12-03 21:45:14 +0000575 * \def POLARSSL_NO_PLATFORM_ENTROPY
576 *
577 * Do not use built-in platform entropy functions.
578 * This is useful if your platform does not support
579 * standards like the /dev/urandom or Windows CryptoAPI.
580 *
581 * Uncomment this macro to disable the built-in platform entropy functions.
Paul Bakker6083fd22011-12-03 21:45:14 +0000582 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200583//#define POLARSSL_NO_PLATFORM_ENTROPY
Paul Bakker6083fd22011-12-03 21:45:14 +0000584
585/**
Paul Bakker6e339b52013-07-03 13:37:05 +0200586 * \def POLARSSL_MEMORY_DEBUG
587 *
588 * Enable debugging of buffer allocator memory issues. Automatically prints
589 * (to stderr) all (fatal) messages on memory allocation issues. Enables
590 * function for 'debug output' of allocated memory.
591 *
592 * Requires: POLARSSL_MEMORY_BUFFER_ALLOC_C
593 * fprintf()
594 *
595 * Uncomment this macro to let the buffer allocator print out error messages.
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200596 */
597//#define POLARSSL_MEMORY_DEBUG
Paul Bakker6e339b52013-07-03 13:37:05 +0200598
599/**
600 * \def POLARSSL_MEMORY_BACKTRACE
601 *
602 * Include backtrace information with each allocated block.
603 *
604 * Requires: POLARSSL_MEMORY_BUFFER_ALLOC_C
605 * GLIBC-compatible backtrace() an backtrace_symbols() support
606 *
607 * Uncomment this macro to include backtrace information
Paul Bakker6e339b52013-07-03 13:37:05 +0200608 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200609//#define POLARSSL_MEMORY_BACKTRACE
Paul Bakker6e339b52013-07-03 13:37:05 +0200610
611/**
Paul Bakker48377d92013-08-30 12:06:24 +0200612 * \def POLARSSL_PKCS1_V15
613 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200614 * Enable support for PKCS#1 v1.5 encoding.
615 *
Paul Bakker48377d92013-08-30 12:06:24 +0200616 * Requires: POLARSSL_RSA_C
617 *
Paul Bakker48377d92013-08-30 12:06:24 +0200618 * This enables support for PKCS#1 v1.5 operations.
619 */
620#define POLARSSL_PKCS1_V15
621
622/**
Paul Bakker9dcc3222011-03-08 14:16:06 +0000623 * \def POLARSSL_PKCS1_V21
624 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200625 * Enable support for PKCS#1 v2.1 encoding.
626 *
Paul Bakker5690efc2011-05-26 13:16:06 +0000627 * Requires: POLARSSL_MD_C, POLARSSL_RSA_C
628 *
Paul Bakker9dcc3222011-03-08 14:16:06 +0000629 * This enables support for RSAES-OAEP and RSASSA-PSS operations.
630 */
631#define POLARSSL_PKCS1_V21
632
633/**
Paul Bakker0216cc12011-03-26 13:40:23 +0000634 * \def POLARSSL_RSA_NO_CRT
635 *
636 * Do not use the Chinese Remainder Theorem for the RSA private operation.
637 *
638 * Uncomment this macro to disable the use of CRT in RSA.
639 *
Paul Bakker0216cc12011-03-26 13:40:23 +0000640 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200641//#define POLARSSL_RSA_NO_CRT
Paul Bakker15566e42011-04-24 21:19:15 +0000642
643/**
644 * \def POLARSSL_SELF_TEST
645 *
646 * Enable the checkup functions (*_self_test).
647 */
648#define POLARSSL_SELF_TEST
Paul Bakker5c721f92011-07-27 16:51:09 +0000649
650/**
Paul Bakker40865c82013-01-31 17:13:13 +0100651 * \def POLARSSL_SSL_ALL_ALERT_MESSAGES
652 *
653 * Enable sending of alert messages in case of encountered errors as per RFC.
654 * If you choose not to send the alert messages, PolarSSL can still communicate
655 * with other servers, only debugging of failures is harder.
656 *
657 * The advantage of not sending alert messages, is that no information is given
658 * about reasons for failures thus preventing adversaries of gaining intel.
659 *
660 * Enable sending of all alert messages
661 */
662#define POLARSSL_SSL_ALERT_MESSAGES
663
664/**
Paul Bakkerd66f0702013-01-31 16:57:45 +0100665 * \def POLARSSL_SSL_DEBUG_ALL
666 *
667 * Enable the debug messages in SSL module for all issues.
668 * Debug messages have been disabled in some places to prevent timing
669 * attacks due to (unbalanced) debugging function calls.
670 *
671 * If you need all error reporting you should enable this during debugging,
672 * but remove this for production servers that should log as well.
673 *
674 * Uncomment this macro to report all debug messages on errors introducing
675 * a timing side-channel.
676 *
Paul Bakkerd66f0702013-01-31 16:57:45 +0100677 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200678//#define POLARSSL_SSL_DEBUG_ALL
Paul Bakkerd66f0702013-01-31 16:57:45 +0100679
680/**
Paul Bakker05ef8352012-05-08 09:17:57 +0000681 * \def POLARSSL_SSL_HW_RECORD_ACCEL
682 *
683 * Enable hooking functions in SSL module for hardware acceleration of
684 * individual records.
685 *
686 * Uncomment this macro to enable hooking functions.
Paul Bakker05ef8352012-05-08 09:17:57 +0000687 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200688//#define POLARSSL_SSL_HW_RECORD_ACCEL
Paul Bakker05ef8352012-05-08 09:17:57 +0000689
690/**
Paul Bakker78a8c712013-03-06 17:01:52 +0100691 * \def POLARSSL_SSL_SRV_SUPPORT_SSLV2_CLIENT_HELLO
692 *
693 * Enable support for receiving and parsing SSLv2 Client Hello messages for the
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200694 * SSL Server module (POLARSSL_SSL_SRV_C).
Paul Bakker78a8c712013-03-06 17:01:52 +0100695 *
696 * Comment this macro to disable support for SSLv2 Client Hello messages.
697 */
698#define POLARSSL_SSL_SRV_SUPPORT_SSLV2_CLIENT_HELLO
699
700/**
Manuel Pégourié-Gonnard1a9f2c72013-11-30 18:30:06 +0100701 * \def POLARSSL_SSL_SRV_RESPECT_CLIENT_PREFERENCE
702 *
703 * Pick the ciphersuite according to the client's preferences rather than ours
704 * in the SSL Server module (POLARSSL_SSL_SRV_C).
705 *
706 * Uncomment this macro to respect client's ciphersuite order
707 */
708//#define POLARSSL_SSL_SRV_RESPECT_CLIENT_PREFERENCE
709
710/**
Paul Bakker05decb22013-08-15 13:33:48 +0200711 * \def POLARSSL_SSL_MAX_FRAGMENT_LENGTH
712 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200713 * Enable support for RFC 6066 max_fragment_length extension in SSL.
Paul Bakker05decb22013-08-15 13:33:48 +0200714 *
715 * Comment this macro to disable support for the max_fragment_length extension
716 */
717#define POLARSSL_SSL_MAX_FRAGMENT_LENGTH
718
719/**
Paul Bakkerd2f068e2013-08-27 21:19:20 +0200720 * \def POLARSSL_SSL_PROTO_SSL3
721 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200722 * Enable support for SSL 3.0.
Paul Bakkerd2f068e2013-08-27 21:19:20 +0200723 *
724 * Requires: POLARSSL_MD5_C
725 * POLARSSL_SHA1_C
726 *
727 * Comment this macro to disable support for SSL 3.0
728 */
729#define POLARSSL_SSL_PROTO_SSL3
730
731/**
732 * \def POLARSSL_SSL_PROTO_TLS1
733 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200734 * Enable support for TLS 1.0.
Paul Bakkerd2f068e2013-08-27 21:19:20 +0200735 *
736 * Requires: POLARSSL_MD5_C
737 * POLARSSL_SHA1_C
738 *
739 * Comment this macro to disable support for TLS 1.0
740 */
741#define POLARSSL_SSL_PROTO_TLS1
742
743/**
744 * \def POLARSSL_SSL_PROTO_TLS1_1
745 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200746 * Enable support for TLS 1.1.
Paul Bakkerd2f068e2013-08-27 21:19:20 +0200747 *
748 * Requires: POLARSSL_MD5_C
749 * POLARSSL_SHA1_C
750 *
751 * Comment this macro to disable support for TLS 1.1
752 */
753#define POLARSSL_SSL_PROTO_TLS1_1
754
755/**
756 * \def POLARSSL_SSL_PROTO_TLS1_2
757 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200758 * Enable support for TLS 1.2.
Paul Bakkerd2f068e2013-08-27 21:19:20 +0200759 *
Manuel Pégourié-Gonnard7c3291e2013-10-27 14:29:51 +0100760 * Requires: POLARSSL_SHA1_C or POLARSSL_SHA256_C or POLARSSL_SHA512_C
Paul Bakkerd2f068e2013-08-27 21:19:20 +0200761 * (Depends on ciphersuites)
762 *
763 * Comment this macro to disable support for TLS 1.2
764 */
765#define POLARSSL_SSL_PROTO_TLS1_2
766
767/**
Paul Bakkera503a632013-08-14 13:48:06 +0200768 * \def POLARSSL_SSL_SESSION_TICKETS
769 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200770 * Enable support for RFC 5077 session tickets in SSL.
Paul Bakkera503a632013-08-14 13:48:06 +0200771 *
772 * Requires: POLARSSL_AES_C
773 * POLARSSL_SHA256_C
Manuel Pégourié-Gonnard92cb1d32013-09-13 16:24:20 +0200774 * POLARSSL_CIPHER_MODE_CBC
Paul Bakkera503a632013-08-14 13:48:06 +0200775 *
776 * Comment this macro to disable support for SSL session tickets
777 */
778#define POLARSSL_SSL_SESSION_TICKETS
779
780/**
Paul Bakker0be444a2013-08-27 21:55:01 +0200781 * \def POLARSSL_SSL_SERVER_NAME_INDICATION
782 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200783 * Enable support for RFC 6066 server name indication (SNI) in SSL.
Paul Bakker0be444a2013-08-27 21:55:01 +0200784 *
785 * Comment this macro to disable support for server name indication in SSL
786 */
787#define POLARSSL_SSL_SERVER_NAME_INDICATION
788
789/**
Paul Bakker1f2bc622013-08-15 13:45:55 +0200790 * \def POLARSSL_SSL_TRUNCATED_HMAC
791 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200792 * Enable support for RFC 6066 truncated HMAC in SSL.
Paul Bakker1f2bc622013-08-15 13:45:55 +0200793 *
794 * Comment this macro to disable support for truncated HMAC in SSL
795 */
796#define POLARSSL_SSL_TRUNCATED_HMAC
797
798/**
Paul Bakker2466d932013-09-28 14:40:38 +0200799 * \def POLARSSL_THREADING_ALT
800 *
801 * Provide your own alternate threading implementation.
802 *
803 * Requires: POLARSSL_THREADING_C
804 *
805 * Uncomment this to allow your own alternate threading implementation.
Paul Bakker2466d932013-09-28 14:40:38 +0200806 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200807//#define POLARSSL_THREADING_ALT
Paul Bakker2466d932013-09-28 14:40:38 +0200808
809/**
810 * \def POLARSSL_THREADING_DUMMY
811 *
812 * Provide a dummy threading implementation.
Paul Bakker6838bd12013-09-30 13:56:38 +0200813 * Warning: If you use this, all claims of thread-safety in the documentation
814 * are void!
Paul Bakker2466d932013-09-28 14:40:38 +0200815 *
816 * Requires: POLARSSL_THREADING_C
817 *
818 * Uncomment this to enable code to compile like with threading enabled
Paul Bakker2466d932013-09-28 14:40:38 +0200819 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200820//#define POLARSSL_THREADING_DUMMY
Paul Bakker2466d932013-09-28 14:40:38 +0200821
822/**
823 * \def POLARSSL_THREADING_PTHREAD
824 *
825 * Enable the pthread wrapper layer for the threading layer.
826 *
827 * Requires: POLARSSL_THREADING_C
828 *
829 * Uncomment this to enable pthread mutexes.
Paul Bakker2466d932013-09-28 14:40:38 +0200830 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200831//#define POLARSSL_THREADING_PTHREAD
Paul Bakker2466d932013-09-28 14:40:38 +0200832
833/**
Paul Bakkerc27c4e22013-09-23 15:01:36 +0200834 * \def POLARSSL_X509_ALLOW_EXTENSIONS_NON_V3
835 *
836 * If set, the X509 parser will not break-off when parsing an X509 certificate
837 * and encountering an extension in a v1 or v2 certificate.
838 *
839 * Uncomment to prevent an error.
Paul Bakkerc27c4e22013-09-23 15:01:36 +0200840 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200841//#define POLARSSL_X509_ALLOW_EXTENSIONS_NON_V3
Paul Bakkerc27c4e22013-09-23 15:01:36 +0200842
843/**
Paul Bakker5c721f92011-07-27 16:51:09 +0000844 * \def POLARSSL_X509_ALLOW_UNSUPPORTED_CRITICAL_EXTENSION
845 *
846 * If set, the X509 parser will not break-off when parsing an X509 certificate
847 * and encountering an unknown critical extension.
848 *
849 * Uncomment to prevent an error.
Paul Bakker5c721f92011-07-27 16:51:09 +0000850 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200851//#define POLARSSL_X509_ALLOW_UNSUPPORTED_CRITICAL_EXTENSION
Paul Bakker2770fbd2012-07-03 13:30:23 +0000852
853/**
854 * \def POLARSSL_ZLIB_SUPPORT
855 *
856 * If set, the SSL/TLS module uses ZLIB to support compression and
857 * decompression of packet data.
858 *
859 * Used in: library/ssl_tls.c
860 * library/ssl_cli.c
861 * library/ssl_srv.c
862 *
863 * This feature requires zlib library and headers to be present.
864 *
865 * Uncomment to enable use of ZLIB
Paul Bakker2770fbd2012-07-03 13:30:23 +0000866 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200867//#define POLARSSL_ZLIB_SUPPORT
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200868/* \} name SECTION: PolarSSL feature support */
Paul Bakker0a62cd12011-01-21 11:00:08 +0000869
Paul Bakkerf3b86c12011-01-27 15:24:17 +0000870/**
Paul Bakker0a62cd12011-01-21 11:00:08 +0000871 * \name SECTION: PolarSSL modules
872 *
873 * This section enables or disables entire modules in PolarSSL
874 * \{
875 */
Paul Bakker5121ce52009-01-03 21:22:43 +0000876
Paul Bakkerf3b86c12011-01-27 15:24:17 +0000877/**
Manuel Pégourié-Gonnard92ac76f2013-12-16 17:12:53 +0100878 * \def POLARSSL_AESNI_C
879 *
880 * Enable AES-NI support on x86-64.
881 *
882 * Module: library/aesni.c
883 * Caller: library/aes.c
884 *
885 * Requires: POLARSSL_HAVE_ASM
886 *
887 * This modules adds support for the AES-NI instructions on x86-64
888 */
889#define POLARSSL_AESNI_C
890
891/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +0000892 * \def POLARSSL_AES_C
893 *
894 * Enable the AES block cipher.
895 *
Paul Bakker5121ce52009-01-03 21:22:43 +0000896 * Module: library/aes.c
897 * Caller: library/ssl_tls.c
Paul Bakker96743fc2011-02-12 14:30:57 +0000898 * library/pem.c
Paul Bakker6083fd22011-12-03 21:45:14 +0000899 * library/ctr_drbg.c
Paul Bakker5121ce52009-01-03 21:22:43 +0000900 *
Paul Bakker645ce3a2012-10-31 12:32:41 +0000901 * This module enables the following ciphersuites (if other requisites are
902 * enabled as well):
Manuel Pégourié-Gonnard25781b22013-12-11 16:17:10 +0100903 * TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA
904 * TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA
905 * TLS_ECDH_RSA_WITH_AES_128_CBC_SHA
906 * TLS_ECDH_RSA_WITH_AES_256_CBC_SHA
907 * TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256
908 * TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384
909 * TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256
910 * TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384
911 * TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256
912 * TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384
913 * TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256
914 * TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200915 * TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384
916 * TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
917 * TLS_DHE_RSA_WITH_AES_256_GCM_SHA384
918 * TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384
919 * TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384
Paul Bakker645ce3a2012-10-31 12:32:41 +0000920 * TLS_DHE_RSA_WITH_AES_256_CBC_SHA256
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200921 * TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA
Paul Bakker41c83d32013-03-20 14:39:14 +0100922 * TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200923 * TLS_DHE_RSA_WITH_AES_256_CBC_SHA
924 * TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
925 * TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
926 * TLS_DHE_RSA_WITH_AES_128_GCM_SHA256
927 * TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256
928 * TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256
929 * TLS_DHE_RSA_WITH_AES_128_CBC_SHA256
930 * TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA
931 * TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA
932 * TLS_DHE_RSA_WITH_AES_128_CBC_SHA
933 * TLS_DHE_PSK_WITH_AES_256_GCM_SHA384
934 * TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA384
935 * TLS_DHE_PSK_WITH_AES_256_CBC_SHA384
936 * TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA
937 * TLS_DHE_PSK_WITH_AES_256_CBC_SHA
938 * TLS_DHE_PSK_WITH_AES_128_GCM_SHA256
939 * TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA256
940 * TLS_DHE_PSK_WITH_AES_128_CBC_SHA256
941 * TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA
942 * TLS_DHE_PSK_WITH_AES_128_CBC_SHA
943 * TLS_RSA_WITH_AES_256_GCM_SHA384
944 * TLS_RSA_WITH_AES_256_CBC_SHA256
945 * TLS_RSA_WITH_AES_256_CBC_SHA
946 * TLS_RSA_WITH_AES_128_GCM_SHA256
947 * TLS_RSA_WITH_AES_128_CBC_SHA256
948 * TLS_RSA_WITH_AES_128_CBC_SHA
949 * TLS_RSA_PSK_WITH_AES_256_GCM_SHA384
950 * TLS_RSA_PSK_WITH_AES_256_CBC_SHA384
951 * TLS_RSA_PSK_WITH_AES_256_CBC_SHA
952 * TLS_RSA_PSK_WITH_AES_128_GCM_SHA256
953 * TLS_RSA_PSK_WITH_AES_128_CBC_SHA256
954 * TLS_RSA_PSK_WITH_AES_128_CBC_SHA
955 * TLS_PSK_WITH_AES_256_GCM_SHA384
956 * TLS_PSK_WITH_AES_256_CBC_SHA384
Paul Bakkerd4a56ec2013-04-16 18:05:29 +0200957 * TLS_PSK_WITH_AES_256_CBC_SHA
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200958 * TLS_PSK_WITH_AES_128_GCM_SHA256
959 * TLS_PSK_WITH_AES_128_CBC_SHA256
960 * TLS_PSK_WITH_AES_128_CBC_SHA
Paul Bakker6deb37e2013-02-19 13:17:08 +0100961 *
Paul Bakkercff68422013-09-15 20:43:33 +0200962 * PEM_PARSE uses AES for decrypting encrypted keys.
Paul Bakker5121ce52009-01-03 21:22:43 +0000963 */
Paul Bakker40e46942009-01-03 21:51:57 +0000964#define POLARSSL_AES_C
Paul Bakker5121ce52009-01-03 21:22:43 +0000965
Paul Bakkerf3b86c12011-01-27 15:24:17 +0000966/**
967 * \def POLARSSL_ARC4_C
968 *
969 * Enable the ARCFOUR stream cipher.
970 *
Paul Bakker5121ce52009-01-03 21:22:43 +0000971 * Module: library/arc4.c
972 * Caller: library/ssl_tls.c
973 *
Paul Bakker41c83d32013-03-20 14:39:14 +0100974 * This module enables the following ciphersuites (if other requisites are
975 * enabled as well):
Manuel Pégourié-Gonnard25781b22013-12-11 16:17:10 +0100976 * TLS_ECDH_ECDSA_WITH_RC4_128_SHA
977 * TLS_ECDH_RSA_WITH_RC4_128_SHA
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200978 * TLS_ECDHE_ECDSA_WITH_RC4_128_SHA
Paul Bakker41c83d32013-03-20 14:39:14 +0100979 * TLS_ECDHE_RSA_WITH_RC4_128_SHA
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200980 * TLS_ECDHE_PSK_WITH_RC4_128_SHA
981 * TLS_DHE_PSK_WITH_RC4_128_SHA
982 * TLS_RSA_WITH_RC4_128_SHA
983 * TLS_RSA_WITH_RC4_128_MD5
984 * TLS_RSA_PSK_WITH_RC4_128_SHA
Paul Bakkerd4a56ec2013-04-16 18:05:29 +0200985 * TLS_PSK_WITH_RC4_128_SHA
Paul Bakker5121ce52009-01-03 21:22:43 +0000986 */
Paul Bakker40e46942009-01-03 21:51:57 +0000987#define POLARSSL_ARC4_C
Paul Bakker5121ce52009-01-03 21:22:43 +0000988
Paul Bakkerf3b86c12011-01-27 15:24:17 +0000989/**
Paul Bakkerefc30292011-11-10 14:43:23 +0000990 * \def POLARSSL_ASN1_PARSE_C
991 *
992 * Enable the generic ASN1 parser.
993 *
994 * Module: library/asn1.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +0200995 * Caller: library/x509.c
996 * library/dhm.c
997 * library/pkcs12.c
998 * library/pkcs5.c
999 * library/pkparse.c
Paul Bakkerefc30292011-11-10 14:43:23 +00001000 */
1001#define POLARSSL_ASN1_PARSE_C
1002
1003/**
Paul Bakkerbdb912d2012-02-13 23:11:30 +00001004 * \def POLARSSL_ASN1_WRITE_C
1005 *
1006 * Enable the generic ASN1 writer.
1007 *
1008 * Module: library/asn1write.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001009 * Caller: library/ecdsa.c
1010 * library/pkwrite.c
1011 * library/x509_create.c
1012 * library/x509write_crt.c
1013 * library/x509write_csr.c
Paul Bakkerbdb912d2012-02-13 23:11:30 +00001014 */
1015#define POLARSSL_ASN1_WRITE_C
1016
1017/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001018 * \def POLARSSL_BASE64_C
1019 *
1020 * Enable the Base64 module.
1021 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001022 * Module: library/base64.c
Paul Bakker5690efc2011-05-26 13:16:06 +00001023 * Caller: library/pem.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001024 *
Paul Bakker5690efc2011-05-26 13:16:06 +00001025 * This module is required for PEM support (required by X.509).
Paul Bakker5121ce52009-01-03 21:22:43 +00001026 */
Paul Bakker40e46942009-01-03 21:51:57 +00001027#define POLARSSL_BASE64_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001028
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001029/**
1030 * \def POLARSSL_BIGNUM_C
1031 *
Paul Bakker9a736322012-11-14 12:39:52 +00001032 * Enable the multi-precision integer library.
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001033 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001034 * Module: library/bignum.c
1035 * Caller: library/dhm.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001036 * library/ecp.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001037 * library/rsa.c
1038 * library/ssl_tls.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001039 *
1040 * This module is required for RSA and DHM support.
1041 */
Paul Bakker40e46942009-01-03 21:51:57 +00001042#define POLARSSL_BIGNUM_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001043
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001044/**
Paul Bakkera9379c02012-07-04 11:02:11 +00001045 * \def POLARSSL_BLOWFISH_C
1046 *
1047 * Enable the Blowfish block cipher.
1048 *
1049 * Module: library/blowfish.c
1050 */
1051#define POLARSSL_BLOWFISH_C
1052
1053/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001054 * \def POLARSSL_CAMELLIA_C
1055 *
1056 * Enable the Camellia block cipher.
1057 *
Paul Bakker38119b12009-01-10 23:31:23 +00001058 * Module: library/camellia.c
Paul Bakker13e2dfe2009-07-28 07:18:38 +00001059 * Caller: library/ssl_tls.c
Paul Bakker38119b12009-01-10 23:31:23 +00001060 *
Paul Bakker645ce3a2012-10-31 12:32:41 +00001061 * This module enables the following ciphersuites (if other requisites are
1062 * enabled as well):
Manuel Pégourié-Gonnard25781b22013-12-11 16:17:10 +01001063 * TLS_ECDH_ECDSA_WITH_CAMELLIA_128_CBC_SHA256
1064 * TLS_ECDH_ECDSA_WITH_CAMELLIA_256_CBC_SHA384
1065 * TLS_ECDH_RSA_WITH_CAMELLIA_128_CBC_SHA256
1066 * TLS_ECDH_RSA_WITH_CAMELLIA_256_CBC_SHA384
1067 * TLS_ECDH_ECDSA_WITH_CAMELLIA_128_GCM_SHA256
1068 * TLS_ECDH_ECDSA_WITH_CAMELLIA_256_GCM_SHA384
1069 * TLS_ECDH_RSA_WITH_CAMELLIA_128_GCM_SHA256
1070 * TLS_ECDH_RSA_WITH_CAMELLIA_256_GCM_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001071 * TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_GCM_SHA384
1072 * TLS_ECDHE_RSA_WITH_CAMELLIA_256_GCM_SHA384
1073 * TLS_DHE_RSA_WITH_CAMELLIA_256_GCM_SHA384
1074 * TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_CBC_SHA384
1075 * TLS_ECDHE_RSA_WITH_CAMELLIA_256_CBC_SHA384
Paul Bakker645ce3a2012-10-31 12:32:41 +00001076 * TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA256
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001077 * TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA
1078 * TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_GCM_SHA256
1079 * TLS_ECDHE_RSA_WITH_CAMELLIA_128_GCM_SHA256
1080 * TLS_DHE_RSA_WITH_CAMELLIA_128_GCM_SHA256
1081 * TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_CBC_SHA256
1082 * TLS_ECDHE_RSA_WITH_CAMELLIA_128_CBC_SHA256
1083 * TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA256
1084 * TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA
1085 * TLS_DHE_PSK_WITH_CAMELLIA_256_GCM_SHA384
1086 * TLS_ECDHE_PSK_WITH_CAMELLIA_256_CBC_SHA384
1087 * TLS_DHE_PSK_WITH_CAMELLIA_256_CBC_SHA384
1088 * TLS_DHE_PSK_WITH_CAMELLIA_128_GCM_SHA256
1089 * TLS_DHE_PSK_WITH_CAMELLIA_128_CBC_SHA256
1090 * TLS_ECDHE_PSK_WITH_CAMELLIA_128_CBC_SHA256
1091 * TLS_RSA_WITH_CAMELLIA_256_GCM_SHA384
1092 * TLS_RSA_WITH_CAMELLIA_256_CBC_SHA256
1093 * TLS_RSA_WITH_CAMELLIA_256_CBC_SHA
1094 * TLS_RSA_WITH_CAMELLIA_128_GCM_SHA256
1095 * TLS_RSA_WITH_CAMELLIA_128_CBC_SHA256
1096 * TLS_RSA_WITH_CAMELLIA_128_CBC_SHA
1097 * TLS_RSA_PSK_WITH_CAMELLIA_256_GCM_SHA384
1098 * TLS_RSA_PSK_WITH_CAMELLIA_256_CBC_SHA384
1099 * TLS_RSA_PSK_WITH_CAMELLIA_128_GCM_SHA256
1100 * TLS_RSA_PSK_WITH_CAMELLIA_128_CBC_SHA256
1101 * TLS_PSK_WITH_CAMELLIA_256_GCM_SHA384
1102 * TLS_PSK_WITH_CAMELLIA_256_CBC_SHA384
1103 * TLS_PSK_WITH_CAMELLIA_128_GCM_SHA256
1104 * TLS_PSK_WITH_CAMELLIA_128_CBC_SHA256
Paul Bakker38119b12009-01-10 23:31:23 +00001105 */
1106#define POLARSSL_CAMELLIA_C
1107
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001108/**
1109 * \def POLARSSL_CERTS_C
1110 *
1111 * Enable the test certificates.
1112 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001113 * Module: library/certs.c
1114 * Caller:
1115 *
Manuel Pégourié-Gonnard18dc0e22013-10-27 14:35:02 +01001116 * Requires: POLARSSL_PEM_PARSE_C
1117 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001118 * This module is used for testing (ssl_client/server).
1119 */
Paul Bakker40e46942009-01-03 21:51:57 +00001120#define POLARSSL_CERTS_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001121
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001122/**
1123 * \def POLARSSL_CIPHER_C
1124 *
1125 * Enable the generic cipher layer.
1126 *
Paul Bakker8123e9d2011-01-06 15:37:30 +00001127 * Module: library/cipher.c
Paul Bakker04784f52013-08-19 13:30:57 +02001128 * Caller: library/ssl_tls.c
Paul Bakker8123e9d2011-01-06 15:37:30 +00001129 *
1130 * Uncomment to enable generic cipher wrappers.
1131 */
1132#define POLARSSL_CIPHER_C
1133
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001134/**
Paul Bakker0e04d0e2011-11-27 14:46:59 +00001135 * \def POLARSSL_CTR_DRBG_C
1136 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001137 * Enable the CTR_DRBG AES-256-based random generator.
Paul Bakker0e04d0e2011-11-27 14:46:59 +00001138 *
1139 * Module: library/ctr_drbg.c
1140 * Caller:
1141 *
Paul Bakker6083fd22011-12-03 21:45:14 +00001142 * Requires: POLARSSL_AES_C
1143 *
Paul Bakker0e04d0e2011-11-27 14:46:59 +00001144 * This module provides the CTR_DRBG AES-256 random number generator.
1145 */
1146#define POLARSSL_CTR_DRBG_C
1147
1148/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001149 * \def POLARSSL_DEBUG_C
1150 *
1151 * Enable the debug functions.
1152 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001153 * Module: library/debug.c
1154 * Caller: library/ssl_cli.c
1155 * library/ssl_srv.c
1156 * library/ssl_tls.c
1157 *
1158 * This module provides debugging functions.
1159 */
Paul Bakker40e46942009-01-03 21:51:57 +00001160#define POLARSSL_DEBUG_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001161
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001162/**
1163 * \def POLARSSL_DES_C
1164 *
1165 * Enable the DES block cipher.
1166 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001167 * Module: library/des.c
Paul Bakker6deb37e2013-02-19 13:17:08 +01001168 * Caller: library/pem.c
1169 * library/ssl_tls.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001170 *
Paul Bakker645ce3a2012-10-31 12:32:41 +00001171 * This module enables the following ciphersuites (if other requisites are
1172 * enabled as well):
Manuel Pégourié-Gonnard25781b22013-12-11 16:17:10 +01001173 * TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA
1174 * TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001175 * TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA
Paul Bakker41c83d32013-03-20 14:39:14 +01001176 * TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001177 * TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA
1178 * TLS_ECDHE_PSK_WITH_3DES_EDE_CBC_SHA
1179 * TLS_DHE_PSK_WITH_3DES_EDE_CBC_SHA
1180 * TLS_RSA_WITH_3DES_EDE_CBC_SHA
1181 * TLS_RSA_PSK_WITH_3DES_EDE_CBC_SHA
Paul Bakkerd4a56ec2013-04-16 18:05:29 +02001182 * TLS_PSK_WITH_3DES_EDE_CBC_SHA
Paul Bakker6deb37e2013-02-19 13:17:08 +01001183 *
Paul Bakkercff68422013-09-15 20:43:33 +02001184 * PEM_PARSE uses DES/3DES for decrypting encrypted keys.
Paul Bakker5121ce52009-01-03 21:22:43 +00001185 */
Paul Bakker40e46942009-01-03 21:51:57 +00001186#define POLARSSL_DES_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001187
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001188/**
1189 * \def POLARSSL_DHM_C
1190 *
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001191 * Enable the Diffie-Hellman-Merkle module.
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001192 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001193 * Module: library/dhm.c
1194 * Caller: library/ssl_cli.c
1195 * library/ssl_srv.c
1196 *
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001197 * This module is used by the following key exchanges:
1198 * DHE-RSA, DHE-PSK
Paul Bakker5121ce52009-01-03 21:22:43 +00001199 */
Paul Bakker40e46942009-01-03 21:51:57 +00001200#define POLARSSL_DHM_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001201
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001202/**
Paul Bakkerd589a0d2013-03-13 16:30:17 +01001203 * \def POLARSSL_ECDH_C
1204 *
1205 * Enable the elliptic curve Diffie-Hellman library.
1206 *
1207 * Module: library/ecdh.c
Paul Bakker41c83d32013-03-20 14:39:14 +01001208 * Caller: library/ssl_cli.c
1209 * library/ssl_srv.c
1210 *
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001211 * This module is used by the following key exchanges:
1212 * ECDHE-ECDSA, ECDHE-RSA, DHE-PSK
Paul Bakkerd589a0d2013-03-13 16:30:17 +01001213 *
1214 * Requires: POLARSSL_ECP_C
1215 */
1216#define POLARSSL_ECDH_C
1217
1218/**
1219 * \def POLARSSL_ECDSA_C
1220 *
1221 * Enable the elliptic curve DSA library.
1222 *
1223 * Module: library/ecdsa.c
1224 * Caller:
1225 *
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001226 * This module is used by the following key exchanges:
1227 * ECDHE-ECDSA
1228 *
Manuel Pégourié-Gonnard4846f5e2013-08-08 14:36:15 +02001229 * Requires: POLARSSL_ECP_C, POLARSSL_ASN1_WRITE_C, POLARSSL_ASN1_PARSE_C
Paul Bakkerd589a0d2013-03-13 16:30:17 +01001230 */
1231#define POLARSSL_ECDSA_C
1232
1233/**
1234 * \def POLARSSL_ECP_C
1235 *
1236 * Enable the elliptic curve over GF(p) library.
1237 *
1238 * Module: library/ecp.c
1239 * Caller: library/ecdh.c
1240 * library/ecdsa.c
1241 *
Manuel Pégourié-Gonnardb8012fc2013-10-10 15:40:49 +02001242 * Requires: POLARSSL_BIGNUM_C and at least one POLARSSL_ECP_DP_XXX_ENABLED
Paul Bakkerd589a0d2013-03-13 16:30:17 +01001243 */
1244#define POLARSSL_ECP_C
1245
1246/**
Paul Bakker6083fd22011-12-03 21:45:14 +00001247 * \def POLARSSL_ENTROPY_C
1248 *
1249 * Enable the platform-specific entropy code.
1250 *
1251 * Module: library/entropy.c
1252 * Caller:
1253 *
Paul Bakker9e36f042013-06-30 14:34:05 +02001254 * Requires: POLARSSL_SHA512_C
Paul Bakker6083fd22011-12-03 21:45:14 +00001255 *
1256 * This module provides a generic entropy pool
1257 */
1258#define POLARSSL_ENTROPY_C
1259
1260/**
Paul Bakker9d781402011-05-09 16:17:09 +00001261 * \def POLARSSL_ERROR_C
1262 *
1263 * Enable error code to error string conversion.
1264 *
1265 * Module: library/error.c
1266 * Caller:
1267 *
1268 * This module enables err_strerror().
1269 */
1270#define POLARSSL_ERROR_C
1271
1272/**
Paul Bakker89e80c92012-03-20 13:50:09 +00001273 * \def POLARSSL_GCM_C
1274 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001275 * Enable the Galois/Counter Mode (GCM) for AES.
Paul Bakker89e80c92012-03-20 13:50:09 +00001276 *
1277 * Module: library/gcm.c
1278 *
Manuel Pégourié-Gonnard7bd8a992013-10-24 13:39:39 +02001279 * Requires: POLARSSL_AES_C or POLARSSL_CAMELLIA_C
Paul Bakker645ce3a2012-10-31 12:32:41 +00001280 *
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001281 * This module enables the AES-GCM and CAMELLIA-GCM ciphersuites, if other
1282 * requisites are enabled as well.
Paul Bakker89e80c92012-03-20 13:50:09 +00001283 */
1284#define POLARSSL_GCM_C
1285
1286/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001287 * \def POLARSSL_HAVEGE_C
1288 *
1289 * Enable the HAVEGE random generator.
1290 *
Paul Bakker2a844242013-06-24 13:01:53 +02001291 * Warning: the HAVEGE random generator is not suitable for virtualized
1292 * environments
1293 *
1294 * Warning: the HAVEGE random generator is dependent on timing and specific
1295 * processor traits. It is therefore not advised to use HAVEGE as
1296 * your applications primary random generator or primary entropy pool
1297 * input. As a secondary input to your entropy pool, it IS able add
1298 * the (limited) extra entropy it provides.
1299 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001300 * Module: library/havege.c
1301 * Caller:
1302 *
Paul Bakker5690efc2011-05-26 13:16:06 +00001303 * Requires: POLARSSL_TIMING_C
1304 *
Paul Bakker2a844242013-06-24 13:01:53 +02001305 * Uncomment to enable the HAVEGE random generator.
Paul Bakker2a844242013-06-24 13:01:53 +02001306 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +02001307//#define POLARSSL_HAVEGE_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001308
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001309/**
1310 * \def POLARSSL_MD_C
1311 *
1312 * Enable the generic message digest layer.
1313 *
Paul Bakker17373852011-01-06 14:20:01 +00001314 * Module: library/md.c
1315 * Caller:
1316 *
1317 * Uncomment to enable generic message digest wrappers.
1318 */
1319#define POLARSSL_MD_C
1320
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001321/**
1322 * \def POLARSSL_MD2_C
1323 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001324 * Enable the MD2 hash algorithm.
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001325 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001326 * Module: library/md2.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001327 * Caller:
Paul Bakker5121ce52009-01-03 21:22:43 +00001328 *
1329 * Uncomment to enable support for (rare) MD2-signed X.509 certs.
Paul Bakker6506aff2009-07-28 20:52:02 +00001330 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +02001331//#define POLARSSL_MD2_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001332
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001333/**
1334 * \def POLARSSL_MD4_C
1335 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001336 * Enable the MD4 hash algorithm.
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001337 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001338 * Module: library/md4.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001339 * Caller:
Paul Bakker5121ce52009-01-03 21:22:43 +00001340 *
1341 * Uncomment to enable support for (rare) MD4-signed X.509 certs.
Paul Bakker6506aff2009-07-28 20:52:02 +00001342 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +02001343//#define POLARSSL_MD4_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001344
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001345/**
1346 * \def POLARSSL_MD5_C
1347 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001348 * Enable the MD5 hash algorithm.
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001349 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001350 * Module: library/md5.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001351 * Caller: library/md.c
1352 * library/pem.c
Paul Bakker6deb37e2013-02-19 13:17:08 +01001353 * library/ssl_tls.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001354 *
1355 * This module is required for SSL/TLS and X.509.
Paul Bakkercff68422013-09-15 20:43:33 +02001356 * PEM_PARSE uses MD5 for decrypting encrypted keys.
Paul Bakker5121ce52009-01-03 21:22:43 +00001357 */
Paul Bakker40e46942009-01-03 21:51:57 +00001358#define POLARSSL_MD5_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001359
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001360/**
Paul Bakker6e339b52013-07-03 13:37:05 +02001361 * \def POLARSSL_MEMORY_C
1362 *
1363 * Enable the memory allocation layer.
1364 * By default PolarSSL uses the system-provided malloc() and free().
1365 * (As long as POLARSSL_MEMORY_STDMALLOC and POLARSSL_MEMORY_STDFREE
1366 * are defined and unmodified)
1367 *
1368 * This allows different allocators (self-implemented or provided)
1369 *
1370 * Enable this layer to allow use of alternative memory allocators.
Paul Bakker6e339b52013-07-03 13:37:05 +02001371 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +02001372//#define POLARSSL_MEMORY_C
Paul Bakker6e339b52013-07-03 13:37:05 +02001373
1374/**
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001375 * \def POLARSSL_MEMORY_BUFFER_ALLOC_C
1376 *
1377 * Enable the buffer allocator implementation that makes use of a (stack)
1378 * based buffer to 'allocate' dynamic memory. (replaces malloc() and free()
1379 * calls)
Paul Bakker6e339b52013-07-03 13:37:05 +02001380 *
1381 * Module: library/memory_buffer_alloc.c
1382 *
1383 * Requires: POLARSSL_MEMORY_C
1384 *
1385 * Enable this module to enable the buffer memory allocator.
Paul Bakker6e339b52013-07-03 13:37:05 +02001386 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +02001387//#define POLARSSL_MEMORY_BUFFER_ALLOC_C
Paul Bakker6e339b52013-07-03 13:37:05 +02001388
1389/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001390 * \def POLARSSL_NET_C
1391 *
1392 * Enable the TCP/IP networking routines.
1393 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001394 * Module: library/net.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001395 *
1396 * This module provides TCP/IP networking routines.
1397 */
Paul Bakker40e46942009-01-03 21:51:57 +00001398#define POLARSSL_NET_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001399
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001400/**
Paul Bakkerc70b9822013-04-07 22:00:46 +02001401 * \def POLARSSL_OID_C
1402 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001403 * Enable the OID database.
Paul Bakkerc70b9822013-04-07 22:00:46 +02001404 *
1405 * Module: library/oid.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001406 * Caller: library/asn1write.c
1407 * library/pkcs5.c
1408 * library/pkparse.c
1409 * library/pkwrite.c
1410 * library/rsa.c
1411 * library/x509.c
1412 * library/x509_create.c
1413 * library/x509_crl.c
1414 * library/x509_crt.c
1415 * library/x509_csr.c
1416 * library/x509write_crt.c
1417 * library/x509write_csr.c
Paul Bakkerc70b9822013-04-07 22:00:46 +02001418 *
1419 * This modules translates between OIDs and internal values.
1420 */
1421#define POLARSSL_OID_C
1422
1423/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001424 * \def POLARSSL_PADLOCK_C
1425 *
1426 * Enable VIA Padlock support on x86.
1427 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001428 * Module: library/padlock.c
1429 * Caller: library/aes.c
1430 *
Manuel Pégourié-Gonnard92ac76f2013-12-16 17:12:53 +01001431 * Requires: POLARSSL_HAVE_ASM
1432 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001433 * This modules adds support for the VIA PadLock on x86.
1434 */
Paul Bakker40e46942009-01-03 21:51:57 +00001435#define POLARSSL_PADLOCK_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001436
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001437/**
Paul Bakkerf518b162012-08-23 13:03:18 +00001438 * \def POLARSSL_PBKDF2_C
1439 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001440 * Enable PKCS#5 PBKDF2 key derivation function.
Paul Bakkerb0c19a42013-06-24 19:26:38 +02001441 * DEPRECATED: Use POLARSSL_PKCS5_C instead
Paul Bakkerf518b162012-08-23 13:03:18 +00001442 *
1443 * Module: library/pbkdf2.c
1444 *
Paul Bakkerb0c19a42013-06-24 19:26:38 +02001445 * Requires: POLARSSL_PKCS5_C
Paul Bakkerf518b162012-08-23 13:03:18 +00001446 *
1447 * This module adds support for the PKCS#5 PBKDF2 key derivation function.
Paul Bakkerf518b162012-08-23 13:03:18 +00001448 */
Paul Bakker370e90c2013-04-08 15:19:43 +02001449#define POLARSSL_PBKDF2_C
Paul Bakkerf518b162012-08-23 13:03:18 +00001450
1451/**
Paul Bakkercff68422013-09-15 20:43:33 +02001452 * \def POLARSSL_PEM_PARSE_C
Paul Bakker96743fc2011-02-12 14:30:57 +00001453 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001454 * Enable PEM decoding / parsing.
Paul Bakker96743fc2011-02-12 14:30:57 +00001455 *
1456 * Module: library/pem.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001457 * Caller: library/dhm.c
Paul Bakkercff68422013-09-15 20:43:33 +02001458 * library/pkparse.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001459 * library/x509_crl.c
1460 * library/x509_crt.c
1461 * library/x509_csr.c
Paul Bakker96743fc2011-02-12 14:30:57 +00001462 *
Paul Bakker5690efc2011-05-26 13:16:06 +00001463 * Requires: POLARSSL_BASE64_C
1464 *
Paul Bakkercff68422013-09-15 20:43:33 +02001465 * This modules adds support for decoding / parsing PEM files.
Paul Bakker96743fc2011-02-12 14:30:57 +00001466 */
Paul Bakkercff68422013-09-15 20:43:33 +02001467#define POLARSSL_PEM_PARSE_C
1468
1469/**
1470 * \def POLARSSL_PEM_WRITE_C
1471 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001472 * Enable PEM encoding / writing.
Paul Bakkercff68422013-09-15 20:43:33 +02001473 *
1474 * Module: library/pem.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001475 * Caller: library/pkwrite.c
1476 * library/x509write_crt.c
1477 * library/x509write_csr.c
Paul Bakkercff68422013-09-15 20:43:33 +02001478 *
1479 * Requires: POLARSSL_BASE64_C
1480 *
1481 * This modules adds support for encoding / writing PEM files.
1482 */
1483#define POLARSSL_PEM_WRITE_C
Paul Bakker96743fc2011-02-12 14:30:57 +00001484
1485/**
Manuel Pégourié-Gonnardc40b4c32013-08-22 13:29:31 +02001486 * \def POLARSSL_PK_C
1487 *
1488 * Enable the generic public (asymetric) key layer.
1489 *
1490 * Module: library/pk.c
Manuel Pégourié-Gonnard1a483832013-09-20 12:29:15 +02001491 * Caller: library/ssl_tls.c
Manuel Pégourié-Gonnardc40b4c32013-08-22 13:29:31 +02001492 * library/ssl_cli.c
1493 * library/ssl_srv.c
1494 *
Manuel Pégourié-Gonnard1a483832013-09-20 12:29:15 +02001495 * Requires: POLARSSL_RSA_C or POLARSSL_ECP_C
1496 *
Manuel Pégourié-Gonnardc40b4c32013-08-22 13:29:31 +02001497 * Uncomment to enable generic public key wrappers.
1498 */
1499#define POLARSSL_PK_C
1500
1501/**
Paul Bakker4606c732013-09-15 17:04:23 +02001502 * \def POLARSSL_PK_PARSE_C
1503 *
1504 * Enable the generic public (asymetric) key parser.
1505 *
1506 * Module: library/pkparse.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001507 * Caller: library/x509_crt.c
1508 * library/x509_csr.c
Paul Bakker4606c732013-09-15 17:04:23 +02001509 *
1510 * Requires: POLARSSL_PK_C
1511 *
1512 * Uncomment to enable generic public key parse functions.
1513 */
1514#define POLARSSL_PK_PARSE_C
1515
1516/**
1517 * \def POLARSSL_PK_WRITE_C
1518 *
Paul Bakkerf20ba4b2013-09-16 22:46:20 +02001519 * Enable the generic public (asymetric) key writer.
Paul Bakker4606c732013-09-15 17:04:23 +02001520 *
1521 * Module: library/pkwrite.c
1522 * Caller: library/x509write.c
1523 *
1524 * Requires: POLARSSL_PK_C
1525 *
1526 * Uncomment to enable generic public key write functions.
1527 */
1528#define POLARSSL_PK_WRITE_C
1529
1530/**
Paul Bakkerb0c19a42013-06-24 19:26:38 +02001531 * \def POLARSSL_PKCS5_C
1532 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001533 * Enable PKCS#5 functions.
Paul Bakkerb0c19a42013-06-24 19:26:38 +02001534 *
1535 * Module: library/pkcs5.c
1536 *
1537 * Requires: POLARSSL_MD_C
1538 *
1539 * This module adds support for the PKCS#5 functions.
1540 */
1541#define POLARSSL_PKCS5_C
1542
1543/**
Paul Bakker5690efc2011-05-26 13:16:06 +00001544 * \def POLARSSL_PKCS11_C
1545 *
Paul Bakkereb2c6582012-09-27 19:15:01 +00001546 * Enable wrapper for PKCS#11 smartcard support.
Paul Bakker5690efc2011-05-26 13:16:06 +00001547 *
Manuel Pégourié-Gonnard51be5592013-08-22 13:35:53 +02001548 * Module: library/pkcs11.c
1549 * Caller: library/pk.c
Paul Bakker5690efc2011-05-26 13:16:06 +00001550 *
Manuel Pégourié-Gonnard51be5592013-08-22 13:35:53 +02001551 * Requires: POLARSSL_PK_C
Paul Bakker5690efc2011-05-26 13:16:06 +00001552 *
Paul Bakkereb2c6582012-09-27 19:15:01 +00001553 * This module enables SSL/TLS PKCS #11 smartcard support.
Paul Bakker5690efc2011-05-26 13:16:06 +00001554 * Requires the presence of the PKCS#11 helper library (libpkcs11-helper)
Paul Bakker5690efc2011-05-26 13:16:06 +00001555 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +02001556//#define POLARSSL_PKCS11_C
Paul Bakker5690efc2011-05-26 13:16:06 +00001557
1558/**
Paul Bakkerf1f21fe2013-06-24 19:17:19 +02001559 * \def POLARSSL_PKCS12_C
1560 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001561 * Enable PKCS#12 PBE functions.
Paul Bakkerf1f21fe2013-06-24 19:17:19 +02001562 * Adds algorithms for parsing PKCS#8 encrypted private keys
1563 *
1564 * Module: library/pkcs12.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001565 * Caller: library/pkparse.c
Paul Bakkerf1f21fe2013-06-24 19:17:19 +02001566 *
Paul Bakkerb0713c72013-06-24 19:34:08 +02001567 * Requires: POLARSSL_ASN1_PARSE_C, POLARSSL_CIPHER_C, POLARSSL_MD_C
1568 * Can use: POLARSSL_ARC4_C
Paul Bakkerf1f21fe2013-06-24 19:17:19 +02001569 *
1570 * This module enables PKCS#12 functions.
1571 */
1572#define POLARSSL_PKCS12_C
1573
1574/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001575 * \def POLARSSL_RSA_C
1576 *
1577 * Enable the RSA public-key cryptosystem.
1578 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001579 * Module: library/rsa.c
1580 * Caller: library/ssl_cli.c
1581 * library/ssl_srv.c
1582 * library/ssl_tls.c
1583 * library/x509.c
1584 *
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001585 * This module is used by the following key exchanges:
1586 * RSA, DHE-RSA, ECDHE-RSA, RSA-PSK
Paul Bakker5690efc2011-05-26 13:16:06 +00001587 *
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001588 * Requires: POLARSSL_BIGNUM_C, POLARSSL_OID_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001589 */
Paul Bakker40e46942009-01-03 21:51:57 +00001590#define POLARSSL_RSA_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001591
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001592/**
1593 * \def POLARSSL_SHA1_C
1594 *
1595 * Enable the SHA1 cryptographic hash algorithm.
1596 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001597 * Module: library/sha1.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001598 * Caller: library/md.c
1599 * library/ssl_cli.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001600 * library/ssl_srv.c
1601 * library/ssl_tls.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001602 * library/x509write_crt.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001603 *
1604 * This module is required for SSL/TLS and SHA1-signed certificates.
1605 */
Paul Bakker40e46942009-01-03 21:51:57 +00001606#define POLARSSL_SHA1_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001607
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001608/**
Paul Bakker9e36f042013-06-30 14:34:05 +02001609 * \def POLARSSL_SHA256_C
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001610 *
1611 * Enable the SHA-224 and SHA-256 cryptographic hash algorithms.
Paul Bakker9e36f042013-06-30 14:34:05 +02001612 * (Used to be POLARSSL_SHA2_C)
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001613 *
Paul Bakker9e36f042013-06-30 14:34:05 +02001614 * Module: library/sha256.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001615 * Caller: library/entropy.c
1616 * library/md.c
1617 * library/ssl_cli.c
1618 * library/ssl_srv.c
1619 * library/ssl_tls.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001620 *
1621 * This module adds support for SHA-224 and SHA-256.
Paul Bakker769075d2012-11-24 11:26:46 +01001622 * This module is required for the SSL/TLS 1.2 PRF function.
Paul Bakker5121ce52009-01-03 21:22:43 +00001623 */
Paul Bakker9e36f042013-06-30 14:34:05 +02001624#define POLARSSL_SHA256_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001625
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001626/**
Paul Bakker9e36f042013-06-30 14:34:05 +02001627 * \def POLARSSL_SHA512_C
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001628 *
1629 * Enable the SHA-384 and SHA-512 cryptographic hash algorithms.
Paul Bakker9e36f042013-06-30 14:34:05 +02001630 * (Used to be POLARSSL_SHA4_C)
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001631 *
Paul Bakker9e36f042013-06-30 14:34:05 +02001632 * Module: library/sha512.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001633 * Caller: library/entropy.c
1634 * library/md.c
1635 * library/ssl_cli.c
1636 * library/ssl_srv.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001637 *
1638 * This module adds support for SHA-384 and SHA-512.
1639 */
Paul Bakker9e36f042013-06-30 14:34:05 +02001640#define POLARSSL_SHA512_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001641
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001642/**
Paul Bakker0a597072012-09-25 21:55:46 +00001643 * \def POLARSSL_SSL_CACHE_C
1644 *
1645 * Enable simple SSL cache implementation.
1646 *
1647 * Module: library/ssl_cache.c
1648 * Caller:
1649 *
1650 * Requires: POLARSSL_SSL_CACHE_C
1651 */
1652#define POLARSSL_SSL_CACHE_C
1653
1654/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001655 * \def POLARSSL_SSL_CLI_C
1656 *
1657 * Enable the SSL/TLS client code.
1658 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001659 * Module: library/ssl_cli.c
1660 * Caller:
1661 *
Paul Bakker5690efc2011-05-26 13:16:06 +00001662 * Requires: POLARSSL_SSL_TLS_C
1663 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001664 * This module is required for SSL/TLS client support.
1665 */
Paul Bakker40e46942009-01-03 21:51:57 +00001666#define POLARSSL_SSL_CLI_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001667
Paul Bakker9a736322012-11-14 12:39:52 +00001668/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001669 * \def POLARSSL_SSL_SRV_C
1670 *
1671 * Enable the SSL/TLS server code.
1672 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001673 * Module: library/ssl_srv.c
1674 * Caller:
1675 *
Paul Bakker5690efc2011-05-26 13:16:06 +00001676 * Requires: POLARSSL_SSL_TLS_C
1677 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001678 * This module is required for SSL/TLS server support.
1679 */
Paul Bakker40e46942009-01-03 21:51:57 +00001680#define POLARSSL_SSL_SRV_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001681
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001682/**
1683 * \def POLARSSL_SSL_TLS_C
1684 *
Paul Bakkere29ab062011-05-18 13:26:54 +00001685 * Enable the generic SSL/TLS code.
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001686 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001687 * Module: library/ssl_tls.c
1688 * Caller: library/ssl_cli.c
1689 * library/ssl_srv.c
1690 *
Manuel Pégourié-Gonnard1a483832013-09-20 12:29:15 +02001691 * Requires: POLARSSL_CIPHER_C, POLARSSL_MD_C
Paul Bakker577e0062013-08-28 11:57:20 +02001692 * and at least one of the POLARSSL_SSL_PROTO_* defines
Paul Bakker5690efc2011-05-26 13:16:06 +00001693 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001694 * This module is required for SSL/TLS.
1695 */
Paul Bakker40e46942009-01-03 21:51:57 +00001696#define POLARSSL_SSL_TLS_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001697
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001698/**
Paul Bakker2466d932013-09-28 14:40:38 +02001699 * \def POLARSSL_THREADING_C
1700 *
1701 * Enable the threading abstraction layer.
1702 * By default PolarSSL assumes it is used in a non-threaded environment or that
1703 * contexts are not shared between threads. If you do intend to use contexts
1704 * between threads, you will need to enable this layer to prevent race
1705 * conditions.
1706 *
1707 * Module: library/threading.c
1708 *
1709 * This allows different threading implementations (self-implemented or
1710 * provided).
1711 *
1712 * You will have to enable either POLARSSL_THREADING_ALT,
1713 * POLARSSL_THREADING_PTHREAD or POLARSSL_THREADING_DUMMY.
1714 *
1715 * Enable this layer to allow use of mutexes within PolarSSL
Paul Bakker2466d932013-09-28 14:40:38 +02001716 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +02001717//#define POLARSSL_THREADING_C
Paul Bakker2466d932013-09-28 14:40:38 +02001718
1719/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001720 * \def POLARSSL_TIMING_C
1721 *
1722 * Enable the portable timing interface.
1723 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001724 * Module: library/timing.c
1725 * Caller: library/havege.c
1726 *
1727 * This module is used by the HAVEGE random number generator.
Paul Bakkerecd54fb2013-07-03 14:48:29 +02001728 */
Paul Bakkerdcbfdcc2013-09-10 16:16:50 +02001729#define POLARSSL_TIMING_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001730
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001731/**
1732 * \def POLARSSL_VERSION_C
1733 *
1734 * Enable run-time version information.
1735 *
Paul Bakker0a62cd12011-01-21 11:00:08 +00001736 * Module: library/version.c
1737 *
1738 * This module provides run-time version information.
1739 */
1740#define POLARSSL_VERSION_C
1741
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001742/**
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001743 * \def POLARSSL_X509_USE_C
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001744 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001745 * Enable X.509 core for using certificates.
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001746 *
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001747 * Module: library/x509.c
1748 * Caller: library/x509_crl.c
1749 * library/x509_crt.c
1750 * library/x509_csr.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001751 *
Paul Bakkerc70b9822013-04-07 22:00:46 +02001752 * Requires: POLARSSL_ASN1_PARSE_C, POLARSSL_BIGNUM_C, POLARSSL_OID_C,
Paul Bakker4606c732013-09-15 17:04:23 +02001753 * POLARSSL_PK_PARSE_C
Paul Bakker5690efc2011-05-26 13:16:06 +00001754 *
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001755 * This module is required for the X.509 parsing modules.
Paul Bakker5121ce52009-01-03 21:22:43 +00001756 */
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001757#define POLARSSL_X509_USE_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001758
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001759/**
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001760 * \def POLARSSL_X509_CRT_PARSE_C
Paul Bakkerbdb912d2012-02-13 23:11:30 +00001761 *
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001762 * Enable X.509 certificate parsing.
Paul Bakkerbdb912d2012-02-13 23:11:30 +00001763 *
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001764 * Module: library/x509_crt.c
1765 * Caller: library/ssl_cli.c
1766 * library/ssl_srv.c
1767 * library/ssl_tls.c
1768 *
1769 * Requires: POLARSSL_X509_USE_C
1770 *
1771 * This module is required for X.509 certificate parsing.
1772 */
1773#define POLARSSL_X509_CRT_PARSE_C
1774
1775/**
1776 * \def POLARSSL_X509_CRL_PARSE_C
1777 *
1778 * Enable X.509 CRL parsing.
1779 *
1780 * Module: library/x509_crl.c
1781 * Caller: library/x509_crt.c
1782 *
1783 * Requires: POLARSSL_X509_USE_C
1784 *
1785 * This module is required for X.509 CRL parsing.
1786 */
1787#define POLARSSL_X509_CRL_PARSE_C
1788
1789/**
1790 * \def POLARSSL_X509_CSR_PARSE_C
1791 *
1792 * Enable X.509 Certificate Signing Request (CSR) parsing.
1793 *
1794 * Module: library/x509_csr.c
1795 * Caller: library/x509_crt_write.c
1796 *
1797 * Requires: POLARSSL_X509_USE_C
1798 *
1799 * This module is used for reading X.509 certificate request.
1800 */
1801#define POLARSSL_X509_CSR_PARSE_C
1802
1803/**
1804 * \def POLARSSL_X509_CREATE_C
1805 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001806 * Enable X.509 core for creating certificates.
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001807 *
1808 * Module: library/x509_create.c
Paul Bakkerbdb912d2012-02-13 23:11:30 +00001809 *
Paul Bakker4606c732013-09-15 17:04:23 +02001810 * Requires: POLARSSL_BIGNUM_C, POLARSSL_OID_C, POLARSSL_PK_WRITE_C
Paul Bakkerbdb912d2012-02-13 23:11:30 +00001811 *
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001812 * This module is the basis for creating X.509 certificates and CSRs.
1813 */
1814#define POLARSSL_X509_CREATE_C
1815
1816/**
1817 * \def POLARSSL_X509_CRT_WRITE_C
1818 *
1819 * Enable creating X.509 certificates.
1820 *
1821 * Module: library/x509_crt_write.c
1822 *
1823 * Requires: POLARSSL_CREATE_C
1824 *
1825 * This module is required for X.509 certificate creation.
1826 */
1827#define POLARSSL_X509_CRT_WRITE_C
1828
1829/**
1830 * \def POLARSSL_X509_CSR_WRITE_C
1831 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001832 * Enable creating X.509 Certificate Signing Requests (CSR).
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001833 *
1834 * Module: library/x509_csr_write.c
1835 *
1836 * Requires: POLARSSL_CREATE_C
1837 *
Paul Bakkerbdb912d2012-02-13 23:11:30 +00001838 * This module is required for X.509 certificate request writing.
1839 */
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001840#define POLARSSL_X509_CSR_WRITE_C
Paul Bakkerbdb912d2012-02-13 23:11:30 +00001841
1842/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001843 * \def POLARSSL_XTEA_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001844 *
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001845 * Enable the XTEA block cipher.
1846 *
Paul Bakker7a7c78f2009-01-04 18:15:48 +00001847 * Module: library/xtea.c
1848 * Caller:
1849 */
1850#define POLARSSL_XTEA_C
Manuel Pégourié-Gonnard39d2adb2012-10-31 09:26:55 +01001851
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001852/* \} name SECTION: PolarSSL modules */
Paul Bakker7a7c78f2009-01-04 18:15:48 +00001853
Paul Bakker9bcf16c2013-06-24 19:31:17 +02001854/**
1855 * \name SECTION: Module configuration options
1856 *
1857 * This section allows for the setting of module specific sizes and
1858 * configuration options. The default values are already present in the
1859 * relevant header files and should suffice for the regular use cases.
1860 * Our advice is to enable POLARSSL_CONFIG_OPTIONS and change values here
1861 * only if you have a good reason and know the consequences.
1862 *
1863 * If POLARSSL_CONFIG_OPTIONS is undefined here the options in the module
1864 * header file take precedence.
1865 *
1866 * Please check the respective header file for documentation on these
1867 * parameters (to prevent duplicate documentation).
1868 *
1869 * Uncomment POLARSSL_CONFIG_OPTIONS to enable using the values defined here.
1870 * \{
1871 */
1872//#define POLARSSL_CONFIG_OPTIONS /**< Enable config.h module value configuration */
1873
1874#if defined(POLARSSL_CONFIG_OPTIONS)
1875
1876// MPI / BIGNUM options
1877//
1878#define POLARSSL_MPI_WINDOW_SIZE 6 /**< Maximum windows size used. */
1879#define POLARSSL_MPI_MAX_SIZE 512 /**< Maximum number of bytes for usable MPIs. */
1880
1881// CTR_DRBG options
1882//
Paul Bakkerfb08fd22013-08-27 15:06:26 +02001883#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 +02001884#define CTR_DRBG_RESEED_INTERVAL 10000 /**< Interval before reseed is performed by default */
1885#define CTR_DRBG_MAX_INPUT 256 /**< Maximum number of additional input bytes */
1886#define CTR_DRBG_MAX_REQUEST 1024 /**< Maximum number of requested bytes per call */
1887#define CTR_DRBG_MAX_SEED_INPUT 384 /**< Maximum size of (re)seed buffer */
1888
Paul Bakkere1b665e2013-12-11 16:02:58 +01001889// ECP options
1890//
1891#define POLARSSL_ECP_MAX_BITS 521 /**< Maximum bit size of groups */
1892#define POLARSSL_ECP_WINDOW_SIZE 6 /**< Maximum window size used */
1893
Paul Bakker9bcf16c2013-06-24 19:31:17 +02001894// Entropy options
1895//
1896#define ENTROPY_MAX_SOURCES 20 /**< Maximum number of sources supported */
1897#define ENTROPY_MAX_GATHER 128 /**< Maximum amount requested from entropy sources */
1898
Paul Bakker6e339b52013-07-03 13:37:05 +02001899// Memory options
1900#define MEMORY_ALIGN_MULTIPLE 4 /**< Align on multiples of this value */
1901#define POLARSSL_MEMORY_STDMALLOC malloc /**< Default allocator to use, can be undefined */
1902#define POLARSSL_MEMORY_STDFREE free /**< Default free to use, can be undefined */
1903
Paul Bakker9bcf16c2013-06-24 19:31:17 +02001904// SSL Cache options
1905//
1906#define SSL_CACHE_DEFAULT_TIMEOUT 86400 /**< 1 day */
1907#define SSL_CACHE_DEFAULT_MAX_ENTRIES 50 /**< Maximum entries in cache */
1908
1909// SSL options
1910//
1911#define SSL_MAX_CONTENT_LEN 16384 /**< Size of the input / output buffer */
Paul Bakker606b4ba2013-08-14 16:52:14 +02001912#define SSL_DEFAULT_TICKET_LIFETIME 86400 /**< Lifetime of session tickets (if enabled) */
Paul Bakker9bcf16c2013-06-24 19:31:17 +02001913
1914#endif /* POLARSSL_CONFIG_OPTIONS */
1915
1916/* \} name */
1917
Paul Bakker7ad00f92013-04-18 23:05:25 +02001918/*
1919 * Sanity checks on defines and dependencies
1920 */
Manuel Pégourié-Gonnard92ac76f2013-12-16 17:12:53 +01001921#if defined(POLARSSL_AESNI_C) && !defined(POLARSSL_HAVE_ASM)
1922#error "POLARSSL_AESNI_C defined, but not all prerequisites"
1923#endif
1924
Manuel Pégourié-Gonnard18dc0e22013-10-27 14:35:02 +01001925#if defined(POLARSSL_CERTS_C) && !defined(POLARSSL_PEM_PARSE_C)
1926#error "POLARSSL_CERTS_C defined, but not all prerequisites"
Paul Bakker7ad00f92013-04-18 23:05:25 +02001927#endif
1928
1929#if defined(POLARSSL_CTR_DRBG_C) && !defined(POLARSSL_AES_C)
1930#error "POLARSSL_CTR_DRBG_C defined, but not all prerequisites"
1931#endif
1932
Manuel Pégourié-Gonnard18dc0e22013-10-27 14:35:02 +01001933#if defined(POLARSSL_DHM_C) && !defined(POLARSSL_BIGNUM_C)
1934#error "POLARSSL_DHM_C defined, but not all prerequisites"
1935#endif
1936
Paul Bakker7ad00f92013-04-18 23:05:25 +02001937#if defined(POLARSSL_ECDH_C) && !defined(POLARSSL_ECP_C)
1938#error "POLARSSL_ECDH_C defined, but not all prerequisites"
1939#endif
1940
Manuel Pégourié-Gonnard4846f5e2013-08-08 14:36:15 +02001941#if defined(POLARSSL_ECDSA_C) && \
1942 ( !defined(POLARSSL_ECP_C) || \
1943 !defined(POLARSSL_ASN1_PARSE_C) || \
1944 !defined(POLARSSL_ASN1_WRITE_C) )
Paul Bakker7ad00f92013-04-18 23:05:25 +02001945#error "POLARSSL_ECDSA_C defined, but not all prerequisites"
1946#endif
1947
Manuel Pégourié-Gonnardc59c9c12013-10-27 14:04:59 +01001948#if defined(POLARSSL_ECP_C) && ( !defined(POLARSSL_BIGNUM_C) || ( \
1949 !defined(POLARSSL_ECP_DP_SECP192R1_ENABLED) && \
1950 !defined(POLARSSL_ECP_DP_SECP224R1_ENABLED) && \
1951 !defined(POLARSSL_ECP_DP_SECP256R1_ENABLED) && \
1952 !defined(POLARSSL_ECP_DP_SECP384R1_ENABLED) && \
1953 !defined(POLARSSL_ECP_DP_SECP521R1_ENABLED) && \
1954 !defined(POLARSSL_ECP_DP_BP256R1_ENABLED) && \
1955 !defined(POLARSSL_ECP_DP_BP384R1_ENABLED) && \
1956 !defined(POLARSSL_ECP_DP_BP512R1_ENABLED) ) )
Paul Bakker7ad00f92013-04-18 23:05:25 +02001957#error "POLARSSL_ECP_C defined, but not all prerequisites"
1958#endif
1959
Paul Bakkerfb08fd22013-08-27 15:06:26 +02001960#if defined(POLARSSL_ENTROPY_C) && (!defined(POLARSSL_SHA512_C) && \
1961 !defined(POLARSSL_SHA256_C))
Paul Bakker7ad00f92013-04-18 23:05:25 +02001962#error "POLARSSL_ENTROPY_C defined, but not all prerequisites"
1963#endif
Paul Bakkerfb08fd22013-08-27 15:06:26 +02001964#if defined(POLARSSL_ENTROPY_C) && defined(POLARSSL_SHA512_C) && \
1965 defined(POLARSSL_CONFIG_OPTIONS) && (CTR_DRBG_ENTROPY_LEN > 64)
1966#error "CTR_DRBG_ENTROPY_LEN value too high"
1967#endif
1968#if defined(POLARSSL_ENTROPY_C) && !defined(POLARSSL_SHA512_C) && \
1969 defined(POLARSSL_CONFIG_OPTIONS) && (CTR_DRBG_ENTROPY_LEN > 32)
1970#error "CTR_DRBG_ENTROPY_LEN value too high"
1971#endif
Paul Bakker7ad00f92013-04-18 23:05:25 +02001972
Manuel Pégourié-Gonnard7bd8a992013-10-24 13:39:39 +02001973#if defined(POLARSSL_GCM_C) && ( \
1974 !defined(POLARSSL_AES_C) && !defined(POLARSSL_CAMELLIA_C) )
Paul Bakker7ad00f92013-04-18 23:05:25 +02001975#error "POLARSSL_GCM_C defined, but not all prerequisites"
1976#endif
1977
Paul Bakkerecd54fb2013-07-03 14:48:29 +02001978#if defined(POLARSSL_HAVEGE_C) && !defined(POLARSSL_TIMING_C)
1979#error "POLARSSL_HAVEGE_C defined, but not all prerequisites"
1980#endif
1981
Manuel Pégourié-Gonnard25781b22013-12-11 16:17:10 +01001982#if defined(POLARSSL_KEY_EXCHANGE_ECDH_ECDSA_ENABLED) && \
1983 ( !defined(POLARSSL_ECDH_C) || !defined(POLARSSL_X509_CRT_PARSE_C) )
1984#error "POLARSSL_KEY_EXCHANGE_ECDH_ECDSA_ENABLED defined, but not all prerequisites"
1985#endif
1986
1987#if defined(POLARSSL_KEY_EXCHANGE_ECDH_RSA_ENABLED) && \
1988 ( !defined(POLARSSL_ECDH_C) || !defined(POLARSSL_X509_CRT_PARSE_C) )
1989#error "POLARSSL_KEY_EXCHANGE_ECDH_RSA_ENABLED defined, but not all prerequisites"
1990#endif
1991
Paul Bakkere07f41d2013-04-19 09:08:57 +02001992#if defined(POLARSSL_KEY_EXCHANGE_DHE_PSK_ENABLED) && !defined(POLARSSL_DHM_C)
1993#error "POLARSSL_KEY_EXCHANGE_DHE_PSK_ENABLED defined, but not all prerequisites"
1994#endif
1995
Manuel Pégourié-Gonnard3ce3bbd2013-10-11 16:53:50 +02001996#if defined(POLARSSL_KEY_EXCHANGE_ECDHE_PSK_ENABLED) && \
1997 !defined(POLARSSL_ECDH_C)
1998#error "POLARSSL_KEY_EXCHANGE_ECDHE_PSK_ENABLED defined, but not all prerequisites"
1999#endif
2000
Paul Bakkere07f41d2013-04-19 09:08:57 +02002001#if defined(POLARSSL_KEY_EXCHANGE_DHE_RSA_ENABLED) && \
2002 ( !defined(POLARSSL_DHM_C) || !defined(POLARSSL_RSA_C) || \
Manuel Pégourié-Gonnardcbf3ef32013-09-23 12:20:02 +02002003 !defined(POLARSSL_X509_CRT_PARSE_C) || !defined(POLARSSL_PKCS1_V15) )
Paul Bakkere07f41d2013-04-19 09:08:57 +02002004#error "POLARSSL_KEY_EXCHANGE_DHE_RSA_ENABLED defined, but not all prerequisites"
2005#endif
2006
2007#if defined(POLARSSL_KEY_EXCHANGE_ECDHE_RSA_ENABLED) && \
2008 ( !defined(POLARSSL_ECDH_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_ECDHE_RSA_ENABLED defined, but not all prerequisites"
2011#endif
2012
Manuel Pégourié-Gonnard32ea60a2013-08-17 17:39:04 +02002013#if defined(POLARSSL_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED) && \
2014 ( !defined(POLARSSL_ECDH_C) || !defined(POLARSSL_ECDSA_C) || \
Manuel Pégourié-Gonnardcbf3ef32013-09-23 12:20:02 +02002015 !defined(POLARSSL_X509_CRT_PARSE_C) )
Manuel Pégourié-Gonnard32ea60a2013-08-17 17:39:04 +02002016#error "POLARSSL_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED defined, but not all prerequisites"
2017#endif
2018
Paul Bakkere07f41d2013-04-19 09:08:57 +02002019#if defined(POLARSSL_KEY_EXCHANGE_RSA_PSK_ENABLED) && \
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002020 ( !defined(POLARSSL_RSA_C) || !defined(POLARSSL_X509_CRT_PARSE_C) ||\
Manuel Pégourié-Gonnardcbf3ef32013-09-23 12:20:02 +02002021 !defined(POLARSSL_PKCS1_V15) )
Paul Bakkere07f41d2013-04-19 09:08:57 +02002022#error "POLARSSL_KEY_EXCHANGE_RSA_PSK_ENABLED defined, but not all prerequisites"
2023#endif
2024
2025#if defined(POLARSSL_KEY_EXCHANGE_RSA_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_ENABLED defined, but not all prerequisites"
2029#endif
2030
Paul Bakker6e339b52013-07-03 13:37:05 +02002031#if defined(POLARSSL_MEMORY_BUFFER_ALLOC_C) && !defined(POLARSSL_MEMORY_C)
2032#error "POLARSSL_MEMORY_BUFFER_ALLOC_C defined, but not all prerequisites"
2033#endif
2034
Manuel Pégourié-Gonnard92ac76f2013-12-16 17:12:53 +01002035#if defined(POLARSSL_PADLOCK_C) && !defined(POLARSSL_HAVE_ASM)
2036#error "POLARSSL_PADLOCK_C defined, but not all prerequisites"
2037#endif
2038
Paul Bakker7ad00f92013-04-18 23:05:25 +02002039#if defined(POLARSSL_PBKDF2_C) && !defined(POLARSSL_MD_C)
2040#error "POLARSSL_PBKDF2_C defined, but not all prerequisites"
2041#endif
2042
Paul Bakkercff68422013-09-15 20:43:33 +02002043#if defined(POLARSSL_PEM_PARSE_C) && !defined(POLARSSL_BASE64_C)
2044#error "POLARSSL_PEM_PARSE_C defined, but not all prerequisites"
2045#endif
2046
2047#if defined(POLARSSL_PEM_WRITE_C) && !defined(POLARSSL_BASE64_C)
2048#error "POLARSSL_PEM_WRITE_C defined, but not all prerequisites"
Paul Bakker7ad00f92013-04-18 23:05:25 +02002049#endif
2050
Paul Bakker4606c732013-09-15 17:04:23 +02002051#if defined(POLARSSL_PK_PARSE_C) && !defined(POLARSSL_PK_C)
2052#error "POLARSSL_PK_PARSE_C defined, but not all prerequisites"
2053#endif
2054
2055#if defined(POLARSSL_PK_WRITE_C) && !defined(POLARSSL_PK_C)
2056#error "POLARSSL_PK_WRITE_C defined, but not all prerequisites"
2057#endif
2058
Manuel Pégourié-Gonnard51be5592013-08-22 13:35:53 +02002059#if defined(POLARSSL_PKCS11_C) && !defined(POLARSSL_PK_C)
Paul Bakker7ad00f92013-04-18 23:05:25 +02002060#error "POLARSSL_PKCS11_C defined, but not all prerequisites"
2061#endif
2062
2063#if defined(POLARSSL_RSA_C) && ( !defined(POLARSSL_BIGNUM_C) || \
2064 !defined(POLARSSL_OID_C) )
2065#error "POLARSSL_RSA_C defined, but not all prerequisites"
2066#endif
2067
Manuel Pégourié-Gonnard7c3291e2013-10-27 14:29:51 +01002068#if defined(POLARSSL_SSL_PROTO_SSL3) && ( !defined(POLARSSL_MD5_C) || \
2069 !defined(POLARSSL_SHA1_C) )
2070#error "POLARSSL_SSL_PROTO_SSL3 defined, but not all prerequisites"
2071#endif
2072
2073#if defined(POLARSSL_SSL_PROTO_TLS1) && ( !defined(POLARSSL_MD5_C) || \
2074 !defined(POLARSSL_SHA1_C) )
2075#error "POLARSSL_SSL_PROTO_TLS1 defined, but not all prerequisites"
2076#endif
2077
2078#if defined(POLARSSL_SSL_PROTO_TLS1_1) && ( !defined(POLARSSL_MD5_C) || \
2079 !defined(POLARSSL_SHA1_C) )
2080#error "POLARSSL_SSL_PROTO_TLS1_1 defined, but not all prerequisites"
2081#endif
2082
2083#if defined(POLARSSL_SSL_PROTO_TLS1_2) && ( !defined(POLARSSL_SHA1_C) && \
2084 !defined(POLARSSL_SHA256_C) && !defined(POLARSSL_SHA512_C) )
2085#error "POLARSSL_SSL_PROTO_TLS1_2 defined, but not all prerequisites"
2086#endif
2087
Paul Bakker7ad00f92013-04-18 23:05:25 +02002088#if defined(POLARSSL_SSL_CLI_C) && !defined(POLARSSL_SSL_TLS_C)
2089#error "POLARSSL_SSL_CLI_C defined, but not all prerequisites"
2090#endif
2091
Paul Bakker577e0062013-08-28 11:57:20 +02002092#if defined(POLARSSL_SSL_TLS_C) && ( !defined(POLARSSL_CIPHER_C) || \
Manuel Pégourié-Gonnard1a483832013-09-20 12:29:15 +02002093 !defined(POLARSSL_MD_C) )
Paul Bakker7ad00f92013-04-18 23:05:25 +02002094#error "POLARSSL_SSL_TLS_C defined, but not all prerequisites"
2095#endif
2096
2097#if defined(POLARSSL_SSL_SRV_C) && !defined(POLARSSL_SSL_TLS_C)
2098#error "POLARSSL_SSL_SRV_C defined, but not all prerequisites"
2099#endif
2100
Paul Bakkerd2f068e2013-08-27 21:19:20 +02002101#if defined(POLARSSL_SSL_TLS_C) && (!defined(POLARSSL_SSL_PROTO_SSL3) && \
2102 !defined(POLARSSL_SSL_PROTO_TLS1) && !defined(POLARSSL_SSL_PROTO_TLS1_1) && \
2103 !defined(POLARSSL_SSL_PROTO_TLS1_2))
2104#error "POLARSSL_SSL_TLS_C defined, but no protocols are active"
2105#endif
2106
2107#if defined(POLARSSL_SSL_TLS_C) && (defined(POLARSSL_SSL_PROTO_SSL3) && \
2108 defined(POLARSSL_SSL_PROTO_TLS1_1) && !defined(POLARSSL_SSL_PROTO_TLS1))
2109#error "Illegal protocol selection"
2110#endif
2111
2112#if defined(POLARSSL_SSL_TLS_C) && (defined(POLARSSL_SSL_PROTO_TLS1) && \
2113 defined(POLARSSL_SSL_PROTO_TLS1_2) && !defined(POLARSSL_SSL_PROTO_TLS1_1))
2114#error "Illegal protocol selection"
2115#endif
2116
2117#if defined(POLARSSL_SSL_TLS_C) && (defined(POLARSSL_SSL_PROTO_SSL3) && \
2118 defined(POLARSSL_SSL_PROTO_TLS1_2) && (!defined(POLARSSL_SSL_PROTO_TLS1) || \
2119 !defined(POLARSSL_SSL_PROTO_TLS1_1)))
2120#error "Illegal protocol selection"
2121#endif
2122
Paul Bakker59da0a42013-08-19 13:27:17 +02002123#if defined(POLARSSL_SSL_SESSION_TICKETS) && defined(POLARSSL_SSL_TLS_C) && \
Manuel Pégourié-Gonnard92cb1d32013-09-13 16:24:20 +02002124 ( !defined(POLARSSL_AES_C) || !defined(POLARSSL_SHA256_C) || \
2125 !defined(POLARSSL_CIPHER_MODE_CBC) )
Paul Bakker59da0a42013-08-19 13:27:17 +02002126#error "POLARSSL_SSL_SESSION_TICKETS_C defined, but not all prerequisites"
2127#endif
2128
Paul Bakker2466d932013-09-28 14:40:38 +02002129#if defined(POLARSSL_THREADING_DUMMY)
2130#if !defined(POLARSSL_THREADING_C) || defined(POLARSSL_THREADING_IMPL)
2131#error "POLARSSL_THREADING_DUMMY defined, but not all prerequisites"
2132#endif
2133#define POLARSSL_THREADING_IMPL
2134#endif
2135
2136#if defined(POLARSSL_THREADING_PTHREAD)
2137#if !defined(POLARSSL_THREADING_C) || defined(POLARSSL_THREADING_IMPL)
2138#error "POLARSSL_THREADING_PTHREAD defined, but not all prerequisites"
2139#endif
2140#define POLARSSL_THREADING_IMPL
2141#endif
2142
2143#if defined(POLARSSL_THREADING_ALT)
2144#if !defined(POLARSSL_THREADING_C) || defined(POLARSSL_THREADING_IMPL)
2145#error "POLARSSL_THREADING_ALT defined, but not all prerequisites"
2146#endif
2147#define POLARSSL_THREADING_IMPL
2148#endif
2149
2150#if defined(POLARSSL_THREADING_C) && !defined(POLARSSL_THREADING_IMPL)
2151#error "POLARSSL_THREADING_C defined, single threading implementation required"
2152#endif
2153#undef POLARSSL_THREADING_IMPL
2154
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002155#if defined(POLARSSL_X509_USE_C) && ( !defined(POLARSSL_BIGNUM_C) || \
Paul Bakker7ad00f92013-04-18 23:05:25 +02002156 !defined(POLARSSL_OID_C) || !defined(POLARSSL_ASN1_PARSE_C) || \
Paul Bakker4606c732013-09-15 17:04:23 +02002157 !defined(POLARSSL_PK_PARSE_C) )
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002158#error "POLARSSL_X509_USE_C defined, but not all prerequisites"
Paul Bakker7ad00f92013-04-18 23:05:25 +02002159#endif
2160
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002161#if defined(POLARSSL_X509_CREATE_C) && ( !defined(POLARSSL_BIGNUM_C) || \
2162 !defined(POLARSSL_OID_C) || !defined(POLARSSL_ASN1_WRITE_C) || \
2163 !defined(POLARSSL_PK_WRITE_C) )
2164#error "POLARSSL_X509_CREATE_C defined, but not all prerequisites"
2165#endif
2166
2167#if defined(POLARSSL_X509_CRT_PARSE_C) && ( !defined(POLARSSL_X509_USE_C) )
2168#error "POLARSSL_X509_CRT_PARSE_C defined, but not all prerequisites"
2169#endif
2170
2171#if defined(POLARSSL_X509_CRL_PARSE_C) && ( !defined(POLARSSL_X509_USE_C) )
2172#error "POLARSSL_X509_CRL_PARSE_C defined, but not all prerequisites"
2173#endif
2174
2175#if defined(POLARSSL_X509_CSR_PARSE_C) && ( !defined(POLARSSL_X509_USE_C) )
2176#error "POLARSSL_X509_CSR_PARSE_C defined, but not all prerequisites"
2177#endif
2178
2179#if defined(POLARSSL_X509_CRT_WRITE_C) && ( !defined(POLARSSL_X509_CREATE_C) )
2180#error "POLARSSL_X509_CRT_WRITE_C defined, but not all prerequisites"
2181#endif
2182
2183#if defined(POLARSSL_X509_CSR_WRITE_C) && ( !defined(POLARSSL_X509_CREATE_C) )
2184#error "POLARSSL_X509_CSR_WRITE_C defined, but not all prerequisites"
Paul Bakker7ad00f92013-04-18 23:05:25 +02002185#endif
2186
Paul Bakker5121ce52009-01-03 21:22:43 +00002187#endif /* config.h */