blob: f4f5f777dee66b496a322f538bedce1bdeadaaab [file] [log] [blame]
Paul Bakker5121ce52009-01-03 21:22:43 +00001/**
2 * \file config.h
3 *
Paul Bakker37ca75d2011-01-06 12:28:03 +00004 * \brief Configuration options (set of defines)
5 *
Paul Bakker9bcf16c2013-06-24 19:31:17 +02006 * Copyright (C) 2006-2013, Brainspark B.V.
Paul Bakkerb96f1542010-07-18 20:36:00 +00007 *
8 * This file is part of PolarSSL (http://www.polarssl.org)
Paul Bakker84f12b72010-07-18 10:13:04 +00009 * Lead Maintainer: Paul Bakker <polarssl_maintainer at polarssl.org>
Paul Bakkerb96f1542010-07-18 20:36:00 +000010 *
Paul Bakker77b385e2009-07-28 17:23:11 +000011 * All rights reserved.
Paul Bakkere0ccd0a2009-01-04 16:27:10 +000012 *
Paul Bakkere0ccd0a2009-01-04 16:27:10 +000013 * This program is free software; you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation; either version 2 of the License, or
16 * (at your option) any later version.
17 *
18 * This program is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22 *
23 * You should have received a copy of the GNU General Public License along
24 * with this program; if not, write to the Free Software Foundation, Inc.,
25 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
26 *
Paul Bakker5121ce52009-01-03 21:22:43 +000027 * This set of compile-time options may be used to enable
28 * or disable features selectively, and reduce the global
29 * memory footprint.
30 */
Paul Bakker40e46942009-01-03 21:51:57 +000031#ifndef POLARSSL_CONFIG_H
32#define POLARSSL_CONFIG_H
Paul Bakker5121ce52009-01-03 21:22:43 +000033
Paul Bakkercce9d772011-11-18 14:26:47 +000034#if defined(_MSC_VER) && !defined(_CRT_SECURE_NO_DEPRECATE)
Paul Bakker5121ce52009-01-03 21:22:43 +000035#define _CRT_SECURE_NO_DEPRECATE 1
36#endif
37
Paul Bakkerf3b86c12011-01-27 15:24:17 +000038/**
Paul Bakker0a62cd12011-01-21 11:00:08 +000039 * \name SECTION: System support
40 *
41 * This section sets system specific settings.
42 * \{
43 */
44
Paul Bakkerf3b86c12011-01-27 15:24:17 +000045/**
46 * \def POLARSSL_HAVE_INT8
Paul Bakker5121ce52009-01-03 21:22:43 +000047 *
Paul Bakkerf3b86c12011-01-27 15:24:17 +000048 * The system uses 8-bit wide native integers.
49 *
50 * Uncomment if native integers are 8-bit wide.
Paul Bakker5121ce52009-01-03 21:22:43 +000051 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +020052//#define POLARSSL_HAVE_INT8
Paul Bakker5121ce52009-01-03 21:22:43 +000053
Paul Bakkerf3b86c12011-01-27 15:24:17 +000054/**
55 * \def POLARSSL_HAVE_INT16
Paul Bakker5121ce52009-01-03 21:22:43 +000056 *
Paul Bakkerf3b86c12011-01-27 15:24:17 +000057 * The system uses 16-bit wide native integers.
58 *
59 * Uncomment if native integers are 16-bit wide.
Paul Bakker5121ce52009-01-03 21:22:43 +000060 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +020061//#define POLARSSL_HAVE_INT16
Paul Bakker5121ce52009-01-03 21:22:43 +000062
Paul Bakkerf3b86c12011-01-27 15:24:17 +000063/**
Paul Bakker62261d62012-10-02 12:19:31 +000064 * \def POLARSSL_HAVE_LONGLONG
Paul Bakker5121ce52009-01-03 21:22:43 +000065 *
Paul Bakker62261d62012-10-02 12:19:31 +000066 * The compiler supports the 'long long' type.
67 * (Only used on 32-bit platforms)
Paul Bakker5121ce52009-01-03 21:22:43 +000068 */
Paul Bakker62261d62012-10-02 12:19:31 +000069#define POLARSSL_HAVE_LONGLONG
Paul Bakker5121ce52009-01-03 21:22:43 +000070
Paul Bakkerf3b86c12011-01-27 15:24:17 +000071/**
72 * \def POLARSSL_HAVE_ASM
73 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +020074 * The compiler has support for asm().
Paul Bakker68041ec2009-04-19 21:17:55 +000075 *
76 * Requires support for asm() in compiler.
77 *
78 * Used in:
79 * library/timing.c
80 * library/padlock.c
81 * include/polarssl/bn_mul.h
82 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +020083 * Comment to disable the use of assembly code.
Paul Bakker5121ce52009-01-03 21:22:43 +000084 */
Paul Bakker40e46942009-01-03 21:51:57 +000085#define POLARSSL_HAVE_ASM
Paul Bakker5121ce52009-01-03 21:22:43 +000086
Paul Bakkerf3b86c12011-01-27 15:24:17 +000087/**
88 * \def POLARSSL_HAVE_SSE2
89 *
Paul Bakkere23c3152012-10-01 14:42:47 +000090 * CPU supports SSE2 instruction set.
Paul Bakkerf3b86c12011-01-27 15:24:17 +000091 *
Paul Bakker5121ce52009-01-03 21:22:43 +000092 * Uncomment if the CPU supports SSE2 (IA-32 specific).
Paul Bakker5121ce52009-01-03 21:22:43 +000093 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +020094//#define POLARSSL_HAVE_SSE2
Paul Bakkerfa9b1002013-07-03 15:31:03 +020095
96/**
97 * \def POLARSSL_HAVE_TIME
98 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +020099 * System has time.h and time() / localtime() / gettimeofday().
Paul Bakkerfa9b1002013-07-03 15:31:03 +0200100 *
101 * Comment if your system does not support time functions
102 */
103#define POLARSSL_HAVE_TIME
Manuel Pégourié-Gonnard10934de2013-12-13 12:54:09 +0100104
105/**
106 * \def POLARSSL_HAVE_IPV6
107 *
108 * System supports the basic socket interface for IPv6 (RFC 3493),
Manuel Pégourié-Gonnard767f02c2013-12-13 16:23:39 +0100109 * specifically getaddrinfo(), freeaddrinfo() and struct sockaddr_storage.
Manuel Pégourié-Gonnard10934de2013-12-13 12:54:09 +0100110 *
Manuel Pégourié-Gonnard13211352013-12-17 17:38:55 +0100111 * Note: on Windows/MingW, XP or higher is required.
112 *
Manuel Pégourié-Gonnard10934de2013-12-13 12:54:09 +0100113 * Comment if your system does not support the IPv6 socket interface
114 */
115#define POLARSSL_HAVE_IPV6
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200116/* \} name SECTION: System support */
Paul Bakker0a62cd12011-01-21 11:00:08 +0000117
Paul Bakkerf3b86c12011-01-27 15:24:17 +0000118/**
Paul Bakker0a62cd12011-01-21 11:00:08 +0000119 * \name SECTION: PolarSSL feature support
120 *
121 * This section sets support for features that are or are not needed
122 * within the modules that are enabled.
123 * \{
124 */
Paul Bakker5121ce52009-01-03 21:22:43 +0000125
Paul Bakkerf3b86c12011-01-27 15:24:17 +0000126/**
Paul Bakker90995b52013-06-24 19:20:35 +0200127 * \def POLARSSL_XXX_ALT
128 *
129 * Uncomment a macro to let PolarSSL use your alternate core implementation of
130 * a symmetric or hash algorithm (e.g. platform specific assembly optimized
131 * implementations). Keep in mind that the function prototypes should remain
132 * the same.
133 *
134 * Example: In case you uncomment POLARSSL_AES_ALT, PolarSSL will no longer
135 * provide the "struct aes_context" definition and omit the base function
136 * declarations and implementations. "aes_alt.h" will be included from
137 * "aes.h" to include the new function definitions.
138 *
139 * Uncomment a macro to enable alternate implementation for core algorithm
140 * functions
Paul Bakker90995b52013-06-24 19:20:35 +0200141 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200142//#define POLARSSL_AES_ALT
143//#define POLARSSL_ARC4_ALT
144//#define POLARSSL_BLOWFISH_ALT
145//#define POLARSSL_CAMELLIA_ALT
146//#define POLARSSL_DES_ALT
147//#define POLARSSL_XTEA_ALT
148//#define POLARSSL_MD2_ALT
149//#define POLARSSL_MD4_ALT
150//#define POLARSSL_MD5_ALT
151//#define POLARSSL_SHA1_ALT
152//#define POLARSSL_SHA256_ALT
153//#define POLARSSL_SHA512_ALT
Paul Bakker90995b52013-06-24 19:20:35 +0200154
155/**
Paul Bakker15566e42011-04-24 21:19:15 +0000156 * \def POLARSSL_AES_ROM_TABLES
157 *
158 * Store the AES tables in ROM.
159 *
160 * Uncomment this macro to store the AES tables in ROM.
161 *
Paul Bakker15566e42011-04-24 21:19:15 +0000162 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200163//#define POLARSSL_AES_ROM_TABLES
Paul Bakker15566e42011-04-24 21:19:15 +0000164
165/**
Manuel Pégourié-Gonnardf7dc3782013-09-13 14:10:44 +0200166 * \def POLARSSL_CIPHER_MODE_CBC
167 *
168 * Enable Cipher Block Chaining mode (CBC) for symmetric ciphers.
169 */
170#define POLARSSL_CIPHER_MODE_CBC
171
172/**
Paul Bakkerb6ecaf52011-04-19 14:29:23 +0000173 * \def POLARSSL_CIPHER_MODE_CFB
174 *
175 * Enable Cipher Feedback mode (CFB) for symmetric ciphers.
176 */
177#define POLARSSL_CIPHER_MODE_CFB
178
179/**
180 * \def POLARSSL_CIPHER_MODE_CTR
181 *
182 * Enable Counter Block Cipher mode (CTR) for symmetric ciphers.
183 */
184#define POLARSSL_CIPHER_MODE_CTR
185
186/**
Paul Bakkerfab5c822012-02-06 16:45:10 +0000187 * \def POLARSSL_CIPHER_NULL_CIPHER
188 *
189 * Enable NULL cipher.
190 * Warning: Only do so when you know what you are doing. This allows for
191 * encryption or channels without any security!
192 *
193 * Requires POLARSSL_ENABLE_WEAK_CIPHERSUITES as well to enable
194 * the following ciphersuites:
Manuel Pégourié-Gonnard25781b22013-12-11 16:17:10 +0100195 * TLS_ECDH_ECDSA_WITH_NULL_SHA
196 * TLS_ECDH_RSA_WITH_NULL_SHA
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200197 * TLS_ECDHE_ECDSA_WITH_NULL_SHA
Paul Bakker41c83d32013-03-20 14:39:14 +0100198 * TLS_ECDHE_RSA_WITH_NULL_SHA
Manuel Pégourié-Gonnard225d6aa2013-10-11 19:07:56 +0200199 * TLS_ECDHE_PSK_WITH_NULL_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200200 * TLS_ECDHE_PSK_WITH_NULL_SHA256
201 * TLS_ECDHE_PSK_WITH_NULL_SHA
202 * TLS_DHE_PSK_WITH_NULL_SHA384
203 * TLS_DHE_PSK_WITH_NULL_SHA256
204 * TLS_DHE_PSK_WITH_NULL_SHA
205 * TLS_RSA_WITH_NULL_SHA256
206 * TLS_RSA_WITH_NULL_SHA
207 * TLS_RSA_WITH_NULL_MD5
208 * TLS_RSA_PSK_WITH_NULL_SHA384
209 * TLS_RSA_PSK_WITH_NULL_SHA256
210 * TLS_RSA_PSK_WITH_NULL_SHA
211 * TLS_PSK_WITH_NULL_SHA384
212 * TLS_PSK_WITH_NULL_SHA256
213 * TLS_PSK_WITH_NULL_SHA
Paul Bakkerfab5c822012-02-06 16:45:10 +0000214 *
215 * Uncomment this macro to enable the NULL cipher and ciphersuites
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200216#define POLARSSL_CIPHER_NULL_CIPHER
Paul Bakkerfab5c822012-02-06 16:45:10 +0000217 */
218
219/**
Paul Bakker48e93c82013-08-14 12:21:18 +0200220 * \def POLARSSL_CIPHER_PADDING_XXX
221 *
222 * Uncomment or comment macros to add support for specific padding modes
223 * in the cipher layer with cipher modes that support padding (e.g. CBC)
224 *
225 * If you disable all padding modes, only full blocks can be used with CBC.
226 *
227 * Enable padding modes in the cipher layer.
228 */
229#define POLARSSL_CIPHER_PADDING_PKCS7
230#define POLARSSL_CIPHER_PADDING_ONE_AND_ZEROS
231#define POLARSSL_CIPHER_PADDING_ZEROS_AND_LEN
232#define POLARSSL_CIPHER_PADDING_ZEROS
233
234/**
Paul Bakkerfab5c822012-02-06 16:45:10 +0000235 * \def POLARSSL_ENABLE_WEAK_CIPHERSUITES
236 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200237 * Enable weak ciphersuites in SSL / TLS.
Paul Bakkerfab5c822012-02-06 16:45:10 +0000238 * Warning: Only do so when you know what you are doing. This allows for
Paul Bakker9a736322012-11-14 12:39:52 +0000239 * channels with virtually no security at all!
Paul Bakkerfab5c822012-02-06 16:45:10 +0000240 *
241 * This enables the following ciphersuites:
Paul Bakker645ce3a2012-10-31 12:32:41 +0000242 * TLS_RSA_WITH_DES_CBC_SHA
243 * TLS_DHE_RSA_WITH_DES_CBC_SHA
Paul Bakkerfab5c822012-02-06 16:45:10 +0000244 *
245 * Uncomment this macro to enable weak ciphersuites
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200246#define POLARSSL_ENABLE_WEAK_CIPHERSUITES
Paul Bakkerfab5c822012-02-06 16:45:10 +0000247 */
248
249/**
Paul Bakker5dc6b5f2013-06-29 23:26:34 +0200250 * \def POLARSSL_ECP_XXXX_ENABLED
251 *
252 * Enables specific curves within the Elliptic Curve module.
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200253 * By default all supported curves are enabled.
Paul Bakker5dc6b5f2013-06-29 23:26:34 +0200254 *
255 * Comment macros to disable the curve and functions for it
256 */
257#define POLARSSL_ECP_DP_SECP192R1_ENABLED
258#define POLARSSL_ECP_DP_SECP224R1_ENABLED
259#define POLARSSL_ECP_DP_SECP256R1_ENABLED
260#define POLARSSL_ECP_DP_SECP384R1_ENABLED
261#define POLARSSL_ECP_DP_SECP521R1_ENABLED
Manuel Pégourié-Gonnard8195c1a2013-10-07 19:40:41 +0200262#define POLARSSL_ECP_DP_BP256R1_ENABLED
263#define POLARSSL_ECP_DP_BP384R1_ENABLED
264#define POLARSSL_ECP_DP_BP512R1_ENABLED
Manuel Pégourié-Gonnard66153662013-12-03 14:12:26 +0100265//#define POLARSSL_ECP_DP_M221_ENABLED // Not implemented yet!
266#define POLARSSL_ECP_DP_M255_ENABLED
267//#define POLARSSL_ECP_DP_M383_ENABLED // Not implemented yet!
268//#define POLARSSL_ECP_DP_M511_ENABLED // Not implemented yet!
Paul Bakker5dc6b5f2013-06-29 23:26:34 +0200269
270/**
Manuel Pégourié-Gonnardc04c5302013-10-23 16:11:52 +0200271 * \def POLARSSL_ECP_NIST_OPTIM
272 *
273 * Enable specific 'modulo p' routines for each NIST prime.
274 * Depending on the prime and architecture, makes operations 4 to 8 times
275 * faster on the corresponding curve.
276 *
277 * Comment this macro to disable NIST curves optimisation.
278 */
279#define POLARSSL_ECP_NIST_OPTIM
280
281/**
Manuel Pégourié-Gonnard461d4162014-01-06 10:16:28 +0100282 * \def POLARSSL_ECDSA_DETERMINISTIC
283 *
284 * Enable deterministic ECDSA (RFC 6979).
285 * Standard ECDSA is "fragile" in the sense that lack of entropy when signing
286 * may result in a compromise of the long-term signing key. This is avoided by
287 * the deterministic variant.
288 *
289 * Comment this macro to disable deterministic ECDSA.
290 */
291#define POLARSSL_ECDSA_DETERMINISTIC
292
293/**
Paul Bakkerd4a56ec2013-04-16 18:05:29 +0200294 * \def POLARSSL_KEY_EXCHANGE_PSK_ENABLED
295 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200296 * Enable the PSK based ciphersuite modes in SSL / TLS.
Paul Bakkerd4a56ec2013-04-16 18:05:29 +0200297 *
Paul Bakkere07f41d2013-04-19 09:08:57 +0200298 * This enables the following ciphersuites (if other requisites are
299 * enabled as well):
Paul Bakker45bda902013-04-19 22:28:21 +0200300 * TLS_PSK_WITH_AES_256_GCM_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200301 * TLS_PSK_WITH_AES_256_CBC_SHA384
302 * TLS_PSK_WITH_AES_256_CBC_SHA
303 * TLS_PSK_WITH_CAMELLIA_256_GCM_SHA384
304 * TLS_PSK_WITH_CAMELLIA_256_CBC_SHA384
305 * TLS_PSK_WITH_AES_128_GCM_SHA256
306 * TLS_PSK_WITH_AES_128_CBC_SHA256
307 * TLS_PSK_WITH_AES_128_CBC_SHA
308 * TLS_PSK_WITH_CAMELLIA_128_GCM_SHA256
309 * TLS_PSK_WITH_CAMELLIA_128_CBC_SHA256
310 * TLS_PSK_WITH_3DES_EDE_CBC_SHA
311 * TLS_PSK_WITH_RC4_128_SHA
Paul Bakkerd4a56ec2013-04-16 18:05:29 +0200312 */
313#define POLARSSL_KEY_EXCHANGE_PSK_ENABLED
314
315/**
Paul Bakkere07f41d2013-04-19 09:08:57 +0200316 * \def POLARSSL_KEY_EXCHANGE_DHE_PSK_ENABLED
317 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200318 * Enable the DHE-PSK based ciphersuite modes in SSL / TLS.
Paul Bakkere07f41d2013-04-19 09:08:57 +0200319 *
320 * Requires: POLARSSL_DHM_C
321 *
322 * This enables the following ciphersuites (if other requisites are
323 * enabled as well):
Paul Bakker45bda902013-04-19 22:28:21 +0200324 * TLS_DHE_PSK_WITH_AES_256_GCM_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200325 * TLS_DHE_PSK_WITH_AES_256_CBC_SHA384
326 * TLS_DHE_PSK_WITH_AES_256_CBC_SHA
327 * TLS_DHE_PSK_WITH_CAMELLIA_256_GCM_SHA384
328 * TLS_DHE_PSK_WITH_CAMELLIA_256_CBC_SHA384
329 * TLS_DHE_PSK_WITH_AES_128_GCM_SHA256
330 * TLS_DHE_PSK_WITH_AES_128_CBC_SHA256
331 * TLS_DHE_PSK_WITH_AES_128_CBC_SHA
332 * TLS_DHE_PSK_WITH_CAMELLIA_128_GCM_SHA256
333 * TLS_DHE_PSK_WITH_CAMELLIA_128_CBC_SHA256
334 * TLS_DHE_PSK_WITH_3DES_EDE_CBC_SHA
335 * TLS_DHE_PSK_WITH_RC4_128_SHA
Paul Bakkere07f41d2013-04-19 09:08:57 +0200336 */
Paul Bakker48f7a5d2013-04-19 14:30:58 +0200337#define POLARSSL_KEY_EXCHANGE_DHE_PSK_ENABLED
Paul Bakkere07f41d2013-04-19 09:08:57 +0200338
339/**
Manuel Pégourié-Gonnard3ce3bbd2013-10-11 16:53:50 +0200340 * \def POLARSSL_KEY_EXCHANGE_ECDHE_PSK_ENABLED
341 *
342 * Enable the ECDHE-PSK based ciphersuite modes in SSL / TLS.
343 *
344 * Requires: POLARSSL_ECDH_C
345 *
346 * This enables the following ciphersuites (if other requisites are
347 * enabled as well):
Manuel Pégourié-Gonnard225d6aa2013-10-11 19:07:56 +0200348 * TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200349 * TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA
Manuel Pégourié-Gonnard225d6aa2013-10-11 19:07:56 +0200350 * TLS_ECDHE_PSK_WITH_CAMELLIA_256_CBC_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200351 * TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA256
352 * TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA
353 * TLS_ECDHE_PSK_WITH_CAMELLIA_128_CBC_SHA256
354 * TLS_ECDHE_PSK_WITH_3DES_EDE_CBC_SHA
355 * TLS_ECDHE_PSK_WITH_RC4_128_SHA
Manuel Pégourié-Gonnard3ce3bbd2013-10-11 16:53:50 +0200356 */
357#define POLARSSL_KEY_EXCHANGE_ECDHE_PSK_ENABLED
358
359/**
Paul Bakkere07f41d2013-04-19 09:08:57 +0200360 * \def POLARSSL_KEY_EXCHANGE_RSA_PSK_ENABLED
361 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200362 * Enable the RSA-PSK based ciphersuite modes in SSL / TLS.
Manuel Pégourié-Gonnard0fae60b2013-10-14 17:39:48 +0200363 *
Manuel Pégourié-Gonnard1032c1d2013-09-18 17:18:34 +0200364 * Requires: POLARSSL_RSA_C, POLARSSL_PKCS1_V15,
Manuel Pégourié-Gonnardcbf3ef32013-09-23 12:20:02 +0200365 * POLARSSL_X509_CRT_PARSE_C
Paul Bakkere07f41d2013-04-19 09:08:57 +0200366 *
367 * This enables the following ciphersuites (if other requisites are
368 * enabled as well):
Paul Bakker45bda902013-04-19 22:28:21 +0200369 * TLS_RSA_PSK_WITH_AES_256_GCM_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200370 * TLS_RSA_PSK_WITH_AES_256_CBC_SHA384
371 * TLS_RSA_PSK_WITH_AES_256_CBC_SHA
372 * TLS_RSA_PSK_WITH_CAMELLIA_256_GCM_SHA384
373 * TLS_RSA_PSK_WITH_CAMELLIA_256_CBC_SHA384
374 * TLS_RSA_PSK_WITH_AES_128_GCM_SHA256
375 * TLS_RSA_PSK_WITH_AES_128_CBC_SHA256
376 * TLS_RSA_PSK_WITH_AES_128_CBC_SHA
377 * TLS_RSA_PSK_WITH_CAMELLIA_128_GCM_SHA256
378 * TLS_RSA_PSK_WITH_CAMELLIA_128_CBC_SHA256
379 * TLS_RSA_PSK_WITH_3DES_EDE_CBC_SHA
380 * TLS_RSA_PSK_WITH_RC4_128_SHA
Paul Bakkere07f41d2013-04-19 09:08:57 +0200381 */
Manuel Pégourié-Gonnard0fae60b2013-10-14 17:39:48 +0200382#define POLARSSL_KEY_EXCHANGE_RSA_PSK_ENABLED
Paul Bakkere07f41d2013-04-19 09:08:57 +0200383
384/**
385 * \def POLARSSL_KEY_EXCHANGE_RSA_ENABLED
386 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200387 * Enable the RSA-only based ciphersuite modes in SSL / TLS.
Paul Bakkere07f41d2013-04-19 09:08:57 +0200388 *
Manuel Pégourié-Gonnard1032c1d2013-09-18 17:18:34 +0200389 * Requires: POLARSSL_RSA_C, POLARSSL_PKCS1_V15,
Manuel Pégourié-Gonnardcbf3ef32013-09-23 12:20:02 +0200390 * POLARSSL_X509_CRT_PARSE_C
Paul Bakkere07f41d2013-04-19 09:08:57 +0200391 *
392 * This enables the following ciphersuites (if other requisites are
393 * enabled as well):
Paul Bakkere07f41d2013-04-19 09:08:57 +0200394 * TLS_RSA_WITH_AES_256_GCM_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200395 * TLS_RSA_WITH_AES_256_CBC_SHA256
396 * TLS_RSA_WITH_AES_256_CBC_SHA
397 * TLS_RSA_WITH_CAMELLIA_256_GCM_SHA384
Paul Bakkere07f41d2013-04-19 09:08:57 +0200398 * TLS_RSA_WITH_CAMELLIA_256_CBC_SHA256
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200399 * TLS_RSA_WITH_CAMELLIA_256_CBC_SHA
400 * TLS_RSA_WITH_AES_128_GCM_SHA256
401 * TLS_RSA_WITH_AES_128_CBC_SHA256
402 * TLS_RSA_WITH_AES_128_CBC_SHA
403 * TLS_RSA_WITH_CAMELLIA_128_GCM_SHA256
404 * TLS_RSA_WITH_CAMELLIA_128_CBC_SHA256
405 * TLS_RSA_WITH_CAMELLIA_128_CBC_SHA
Paul Bakkere07f41d2013-04-19 09:08:57 +0200406 * TLS_RSA_WITH_3DES_EDE_CBC_SHA
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200407 * TLS_RSA_WITH_RC4_128_SHA
408 * TLS_RSA_WITH_RC4_128_MD5
Paul Bakkere07f41d2013-04-19 09:08:57 +0200409 */
410#define POLARSSL_KEY_EXCHANGE_RSA_ENABLED
411
412/**
413 * \def POLARSSL_KEY_EXCHANGE_DHE_RSA_ENABLED
414 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200415 * Enable the DHE-RSA based ciphersuite modes in SSL / TLS.
Paul Bakkere07f41d2013-04-19 09:08:57 +0200416 *
Manuel Pégourié-Gonnard1032c1d2013-09-18 17:18:34 +0200417 * Requires: POLARSSL_DHM_C, POLARSSL_RSA_C, POLARSSL_PKCS1_V15,
Manuel Pégourié-Gonnardcbf3ef32013-09-23 12:20:02 +0200418 * POLARSSL_X509_CRT_PARSE_C
Paul Bakkere07f41d2013-04-19 09:08:57 +0200419 *
420 * This enables the following ciphersuites (if other requisites are
421 * enabled as well):
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200422 * TLS_DHE_RSA_WITH_AES_256_GCM_SHA384
Paul Bakkere07f41d2013-04-19 09:08:57 +0200423 * TLS_DHE_RSA_WITH_AES_256_CBC_SHA256
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200424 * TLS_DHE_RSA_WITH_AES_256_CBC_SHA
425 * TLS_DHE_RSA_WITH_CAMELLIA_256_GCM_SHA384
Paul Bakkere07f41d2013-04-19 09:08:57 +0200426 * TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA256
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200427 * TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA
428 * TLS_DHE_RSA_WITH_AES_128_GCM_SHA256
429 * TLS_DHE_RSA_WITH_AES_128_CBC_SHA256
430 * TLS_DHE_RSA_WITH_AES_128_CBC_SHA
431 * TLS_DHE_RSA_WITH_CAMELLIA_128_GCM_SHA256
432 * TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA256
433 * TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA
Paul Bakkere07f41d2013-04-19 09:08:57 +0200434 * TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA
435 */
436#define POLARSSL_KEY_EXCHANGE_DHE_RSA_ENABLED
437
438/**
439 * \def POLARSSL_KEY_EXCHANGE_ECDHE_RSA_ENABLED
440 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200441 * Enable the ECDHE-RSA based ciphersuite modes in SSL / TLS.
Paul Bakkere07f41d2013-04-19 09:08:57 +0200442 *
Manuel Pégourié-Gonnard1032c1d2013-09-18 17:18:34 +0200443 * Requires: POLARSSL_ECDH_C, POLARSSL_RSA_C, POLARSSL_PKCS1_V15,
Manuel Pégourié-Gonnardcbf3ef32013-09-23 12:20:02 +0200444 * POLARSSL_X509_CRT_PARSE_C
Paul Bakkere07f41d2013-04-19 09:08:57 +0200445 *
446 * This enables the following ciphersuites (if other requisites are
447 * enabled as well):
Paul Bakkere07f41d2013-04-19 09:08:57 +0200448 * TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200449 * TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384
450 * TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA
451 * TLS_ECDHE_RSA_WITH_CAMELLIA_256_GCM_SHA384
Paul Bakkere07f41d2013-04-19 09:08:57 +0200452 * TLS_ECDHE_RSA_WITH_CAMELLIA_256_CBC_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200453 * TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
454 * TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256
455 * TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA
456 * TLS_ECDHE_RSA_WITH_CAMELLIA_128_GCM_SHA256
457 * TLS_ECDHE_RSA_WITH_CAMELLIA_128_CBC_SHA256
458 * TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA
459 * TLS_ECDHE_RSA_WITH_RC4_128_SHA
Paul Bakkere07f41d2013-04-19 09:08:57 +0200460 */
461#define POLARSSL_KEY_EXCHANGE_ECDHE_RSA_ENABLED
462
463/**
Manuel Pégourié-Gonnard32ea60a2013-08-17 17:39:04 +0200464 * \def POLARSSL_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED
465 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200466 * Enable the ECDHE-ECDSA based ciphersuite modes in SSL / TLS.
Manuel Pégourié-Gonnard32ea60a2013-08-17 17:39:04 +0200467 *
Manuel Pégourié-Gonnard1032c1d2013-09-18 17:18:34 +0200468 * Requires: POLARSSL_ECDH_C, POLARSSL_ECDSA_C, POLARSSL_X509_CRT_PARSE_C,
Manuel Pégourié-Gonnard32ea60a2013-08-17 17:39:04 +0200469 *
470 * This enables the following ciphersuites (if other requisites are
471 * enabled as well):
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200472 * TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384
473 * TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384
474 * TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA
475 * TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_GCM_SHA384
476 * TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_CBC_SHA384
477 * TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
478 * TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256
479 * TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA
480 * TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_GCM_SHA256
481 * TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_CBC_SHA256
482 * TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA
483 * TLS_ECDHE_ECDSA_WITH_RC4_128_SHA
Manuel Pégourié-Gonnard32ea60a2013-08-17 17:39:04 +0200484 */
485#define POLARSSL_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED
486
487/**
Manuel Pégourié-Gonnard25781b22013-12-11 16:17:10 +0100488 * \def POLARSSL_KEY_EXCHANGE_ECDH_ECDSA_ENABLED
489 *
490 * Enable the ECDH-ECDSA based ciphersuite modes in SSL / TLS.
491 *
492 * Requires: POLARSSL_ECDH_C, POLARSSL_X509_CRT_PARSE_C
493 *
494 * This enables the following ciphersuites (if other requisites are
495 * enabled as well):
496 * TLS_ECDH_ECDSA_WITH_RC4_128_SHA
497 * TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA
498 * TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA
499 * TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA
500 * TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256
501 * TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384
502 * TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256
503 * TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384
504 * TLS_ECDH_ECDSA_WITH_CAMELLIA_128_CBC_SHA256
505 * TLS_ECDH_ECDSA_WITH_CAMELLIA_256_CBC_SHA384
506 * TLS_ECDH_ECDSA_WITH_CAMELLIA_128_GCM_SHA256
507 * TLS_ECDH_ECDSA_WITH_CAMELLIA_256_GCM_SHA384
508 */
509#define POLARSSL_KEY_EXCHANGE_ECDH_ECDSA_ENABLED
510
511/**
512 * \def POLARSSL_KEY_EXCHANGE_ECDH_RSA_ENABLED
513 *
514 * Enable the ECDH-RSA based ciphersuite modes in SSL / TLS.
515 *
516 * Requires: POLARSSL_ECDH_C, POLARSSL_X509_CRT_PARSE_C
517 *
518 * This enables the following ciphersuites (if other requisites are
519 * enabled as well):
520 * TLS_ECDH_RSA_WITH_RC4_128_SHA
521 * TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA
522 * TLS_ECDH_RSA_WITH_AES_128_CBC_SHA
523 * TLS_ECDH_RSA_WITH_AES_256_CBC_SHA
524 * TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256
525 * TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384
526 * TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256
527 * TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384
528 * TLS_ECDH_RSA_WITH_CAMELLIA_128_CBC_SHA256
529 * TLS_ECDH_RSA_WITH_CAMELLIA_256_CBC_SHA384
530 * TLS_ECDH_RSA_WITH_CAMELLIA_128_GCM_SHA256
531 * TLS_ECDH_RSA_WITH_CAMELLIA_256_GCM_SHA384
532 */
533#define POLARSSL_KEY_EXCHANGE_ECDH_RSA_ENABLED
534
535/**
Paul Bakkere2ab84f2013-06-29 18:24:32 +0200536 * \def POLARSSL_ERROR_STRERROR_BC
537 *
538 * Make available the backward compatible error_strerror() next to the
539 * current polarssl_strerror().
540 *
541 * Disable if you run into name conflicts and want to really remove the
542 * error_strerror()
543 */
544#define POLARSSL_ERROR_STRERROR_BC
545
546/**
Paul Bakker8fe40dc2013-02-02 12:43:08 +0100547 * \def POLARSSL_ERROR_STRERROR_DUMMY
548 *
Paul Bakkereba3ccf2013-09-09 15:55:12 +0200549 * Enable a dummy error function to make use of polarssl_strerror() in
Paul Bakker8fe40dc2013-02-02 12:43:08 +0100550 * third party libraries easier.
551 *
552 * Disable if you run into name conflicts and want to really remove the
Paul Bakkereba3ccf2013-09-09 15:55:12 +0200553 * polarssl_strerror()
Paul Bakker8fe40dc2013-02-02 12:43:08 +0100554 */
555#define POLARSSL_ERROR_STRERROR_DUMMY
556
557/**
Paul Bakker15566e42011-04-24 21:19:15 +0000558 * \def POLARSSL_GENPRIME
Paul Bakkerf3b86c12011-01-27 15:24:17 +0000559 *
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +0200560 * Enable the prime-number generation code.
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200561 *
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +0200562 * Requires: POLARSSL_BIGNUM_C
Paul Bakker5121ce52009-01-03 21:22:43 +0000563 */
Paul Bakker15566e42011-04-24 21:19:15 +0000564#define POLARSSL_GENPRIME
Paul Bakker5121ce52009-01-03 21:22:43 +0000565
Paul Bakkerf3b86c12011-01-27 15:24:17 +0000566/**
Paul Bakker335db3f2011-04-25 15:28:35 +0000567 * \def POLARSSL_FS_IO
568 *
569 * Enable functions that use the filesystem.
570 */
571#define POLARSSL_FS_IO
572
573/**
Paul Bakker43655f42011-12-15 20:11:16 +0000574 * \def POLARSSL_NO_DEFAULT_ENTROPY_SOURCES
575 *
576 * Do not add default entropy sources. These are the platform specific,
577 * hardclock and HAVEGE based poll functions.
578 *
579 * This is useful to have more control over the added entropy sources in an
580 * application.
581 *
582 * Uncomment this macro to prevent loading of default entropy functions.
Paul Bakker43655f42011-12-15 20:11:16 +0000583 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200584//#define POLARSSL_NO_DEFAULT_ENTROPY_SOURCES
Paul Bakker43655f42011-12-15 20:11:16 +0000585
586/**
Paul Bakker6083fd22011-12-03 21:45:14 +0000587 * \def POLARSSL_NO_PLATFORM_ENTROPY
588 *
589 * Do not use built-in platform entropy functions.
590 * This is useful if your platform does not support
591 * standards like the /dev/urandom or Windows CryptoAPI.
592 *
593 * Uncomment this macro to disable the built-in platform entropy functions.
Paul Bakker6083fd22011-12-03 21:45:14 +0000594 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200595//#define POLARSSL_NO_PLATFORM_ENTROPY
Paul Bakker6083fd22011-12-03 21:45:14 +0000596
597/**
Paul Bakker6e339b52013-07-03 13:37:05 +0200598 * \def POLARSSL_MEMORY_DEBUG
599 *
600 * Enable debugging of buffer allocator memory issues. Automatically prints
601 * (to stderr) all (fatal) messages on memory allocation issues. Enables
602 * function for 'debug output' of allocated memory.
603 *
604 * Requires: POLARSSL_MEMORY_BUFFER_ALLOC_C
605 * fprintf()
606 *
607 * Uncomment this macro to let the buffer allocator print out error messages.
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200608 */
609//#define POLARSSL_MEMORY_DEBUG
Paul Bakker6e339b52013-07-03 13:37:05 +0200610
611/**
612 * \def POLARSSL_MEMORY_BACKTRACE
613 *
614 * Include backtrace information with each allocated block.
615 *
616 * Requires: POLARSSL_MEMORY_BUFFER_ALLOC_C
617 * GLIBC-compatible backtrace() an backtrace_symbols() support
618 *
619 * Uncomment this macro to include backtrace information
Paul Bakker6e339b52013-07-03 13:37:05 +0200620 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200621//#define POLARSSL_MEMORY_BACKTRACE
Paul Bakker6e339b52013-07-03 13:37:05 +0200622
623/**
Paul Bakker48377d92013-08-30 12:06:24 +0200624 * \def POLARSSL_PKCS1_V15
625 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200626 * Enable support for PKCS#1 v1.5 encoding.
627 *
Paul Bakker48377d92013-08-30 12:06:24 +0200628 * Requires: POLARSSL_RSA_C
629 *
Paul Bakker48377d92013-08-30 12:06:24 +0200630 * This enables support for PKCS#1 v1.5 operations.
631 */
632#define POLARSSL_PKCS1_V15
633
634/**
Paul Bakker9dcc3222011-03-08 14:16:06 +0000635 * \def POLARSSL_PKCS1_V21
636 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200637 * Enable support for PKCS#1 v2.1 encoding.
638 *
Paul Bakker5690efc2011-05-26 13:16:06 +0000639 * Requires: POLARSSL_MD_C, POLARSSL_RSA_C
640 *
Paul Bakker9dcc3222011-03-08 14:16:06 +0000641 * This enables support for RSAES-OAEP and RSASSA-PSS operations.
642 */
643#define POLARSSL_PKCS1_V21
644
645/**
Paul Bakker0216cc12011-03-26 13:40:23 +0000646 * \def POLARSSL_RSA_NO_CRT
647 *
648 * Do not use the Chinese Remainder Theorem for the RSA private operation.
649 *
650 * Uncomment this macro to disable the use of CRT in RSA.
651 *
Paul Bakker0216cc12011-03-26 13:40:23 +0000652 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200653//#define POLARSSL_RSA_NO_CRT
Paul Bakker15566e42011-04-24 21:19:15 +0000654
655/**
656 * \def POLARSSL_SELF_TEST
657 *
658 * Enable the checkup functions (*_self_test).
659 */
660#define POLARSSL_SELF_TEST
Paul Bakker5c721f92011-07-27 16:51:09 +0000661
662/**
Paul Bakker40865c82013-01-31 17:13:13 +0100663 * \def POLARSSL_SSL_ALL_ALERT_MESSAGES
664 *
665 * Enable sending of alert messages in case of encountered errors as per RFC.
666 * If you choose not to send the alert messages, PolarSSL can still communicate
667 * with other servers, only debugging of failures is harder.
668 *
669 * The advantage of not sending alert messages, is that no information is given
670 * about reasons for failures thus preventing adversaries of gaining intel.
671 *
672 * Enable sending of all alert messages
673 */
674#define POLARSSL_SSL_ALERT_MESSAGES
675
676/**
Paul Bakkerd66f0702013-01-31 16:57:45 +0100677 * \def POLARSSL_SSL_DEBUG_ALL
678 *
679 * Enable the debug messages in SSL module for all issues.
680 * Debug messages have been disabled in some places to prevent timing
681 * attacks due to (unbalanced) debugging function calls.
682 *
683 * If you need all error reporting you should enable this during debugging,
684 * but remove this for production servers that should log as well.
685 *
686 * Uncomment this macro to report all debug messages on errors introducing
687 * a timing side-channel.
688 *
Paul Bakkerd66f0702013-01-31 16:57:45 +0100689 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200690//#define POLARSSL_SSL_DEBUG_ALL
Paul Bakkerd66f0702013-01-31 16:57:45 +0100691
692/**
Paul Bakker05ef8352012-05-08 09:17:57 +0000693 * \def POLARSSL_SSL_HW_RECORD_ACCEL
694 *
695 * Enable hooking functions in SSL module for hardware acceleration of
696 * individual records.
697 *
698 * Uncomment this macro to enable hooking functions.
Paul Bakker05ef8352012-05-08 09:17:57 +0000699 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200700//#define POLARSSL_SSL_HW_RECORD_ACCEL
Paul Bakker05ef8352012-05-08 09:17:57 +0000701
702/**
Paul Bakker78a8c712013-03-06 17:01:52 +0100703 * \def POLARSSL_SSL_SRV_SUPPORT_SSLV2_CLIENT_HELLO
704 *
705 * Enable support for receiving and parsing SSLv2 Client Hello messages for the
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200706 * SSL Server module (POLARSSL_SSL_SRV_C).
Paul Bakker78a8c712013-03-06 17:01:52 +0100707 *
708 * Comment this macro to disable support for SSLv2 Client Hello messages.
709 */
710#define POLARSSL_SSL_SRV_SUPPORT_SSLV2_CLIENT_HELLO
711
712/**
Manuel Pégourié-Gonnard1a9f2c72013-11-30 18:30:06 +0100713 * \def POLARSSL_SSL_SRV_RESPECT_CLIENT_PREFERENCE
714 *
715 * Pick the ciphersuite according to the client's preferences rather than ours
716 * in the SSL Server module (POLARSSL_SSL_SRV_C).
717 *
718 * Uncomment this macro to respect client's ciphersuite order
719 */
720//#define POLARSSL_SSL_SRV_RESPECT_CLIENT_PREFERENCE
721
722/**
Paul Bakker05decb22013-08-15 13:33:48 +0200723 * \def POLARSSL_SSL_MAX_FRAGMENT_LENGTH
724 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200725 * Enable support for RFC 6066 max_fragment_length extension in SSL.
Paul Bakker05decb22013-08-15 13:33:48 +0200726 *
727 * Comment this macro to disable support for the max_fragment_length extension
728 */
729#define POLARSSL_SSL_MAX_FRAGMENT_LENGTH
730
731/**
Paul Bakkerd2f068e2013-08-27 21:19:20 +0200732 * \def POLARSSL_SSL_PROTO_SSL3
733 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200734 * Enable support for SSL 3.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 SSL 3.0
740 */
741#define POLARSSL_SSL_PROTO_SSL3
742
743/**
744 * \def POLARSSL_SSL_PROTO_TLS1
745 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200746 * Enable support for TLS 1.0.
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.0
752 */
753#define POLARSSL_SSL_PROTO_TLS1
754
755/**
756 * \def POLARSSL_SSL_PROTO_TLS1_1
757 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200758 * Enable support for TLS 1.1.
Paul Bakkerd2f068e2013-08-27 21:19:20 +0200759 *
760 * Requires: POLARSSL_MD5_C
761 * POLARSSL_SHA1_C
762 *
763 * Comment this macro to disable support for TLS 1.1
764 */
765#define POLARSSL_SSL_PROTO_TLS1_1
766
767/**
768 * \def POLARSSL_SSL_PROTO_TLS1_2
769 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200770 * Enable support for TLS 1.2.
Paul Bakkerd2f068e2013-08-27 21:19:20 +0200771 *
Manuel Pégourié-Gonnard7c3291e2013-10-27 14:29:51 +0100772 * Requires: POLARSSL_SHA1_C or POLARSSL_SHA256_C or POLARSSL_SHA512_C
Paul Bakkerd2f068e2013-08-27 21:19:20 +0200773 * (Depends on ciphersuites)
774 *
775 * Comment this macro to disable support for TLS 1.2
776 */
777#define POLARSSL_SSL_PROTO_TLS1_2
778
779/**
Paul Bakkera503a632013-08-14 13:48:06 +0200780 * \def POLARSSL_SSL_SESSION_TICKETS
781 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200782 * Enable support for RFC 5077 session tickets in SSL.
Paul Bakkera503a632013-08-14 13:48:06 +0200783 *
784 * Requires: POLARSSL_AES_C
785 * POLARSSL_SHA256_C
Manuel Pégourié-Gonnard92cb1d32013-09-13 16:24:20 +0200786 * POLARSSL_CIPHER_MODE_CBC
Paul Bakkera503a632013-08-14 13:48:06 +0200787 *
788 * Comment this macro to disable support for SSL session tickets
789 */
790#define POLARSSL_SSL_SESSION_TICKETS
791
792/**
Paul Bakker0be444a2013-08-27 21:55:01 +0200793 * \def POLARSSL_SSL_SERVER_NAME_INDICATION
794 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200795 * Enable support for RFC 6066 server name indication (SNI) in SSL.
Paul Bakker0be444a2013-08-27 21:55:01 +0200796 *
797 * Comment this macro to disable support for server name indication in SSL
798 */
799#define POLARSSL_SSL_SERVER_NAME_INDICATION
800
801/**
Paul Bakker1f2bc622013-08-15 13:45:55 +0200802 * \def POLARSSL_SSL_TRUNCATED_HMAC
803 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200804 * Enable support for RFC 6066 truncated HMAC in SSL.
Paul Bakker1f2bc622013-08-15 13:45:55 +0200805 *
806 * Comment this macro to disable support for truncated HMAC in SSL
807 */
808#define POLARSSL_SSL_TRUNCATED_HMAC
809
810/**
Paul Bakker2466d932013-09-28 14:40:38 +0200811 * \def POLARSSL_THREADING_ALT
812 *
813 * Provide your own alternate threading implementation.
814 *
815 * Requires: POLARSSL_THREADING_C
816 *
817 * Uncomment this to allow your own alternate threading implementation.
Paul Bakker2466d932013-09-28 14:40:38 +0200818 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200819//#define POLARSSL_THREADING_ALT
Paul Bakker2466d932013-09-28 14:40:38 +0200820
821/**
Paul Bakker2466d932013-09-28 14:40:38 +0200822 * \def POLARSSL_THREADING_PTHREAD
823 *
824 * Enable the pthread wrapper layer for the threading layer.
825 *
826 * Requires: POLARSSL_THREADING_C
827 *
828 * Uncomment this to enable pthread mutexes.
Paul Bakker2466d932013-09-28 14:40:38 +0200829 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200830//#define POLARSSL_THREADING_PTHREAD
Paul Bakker2466d932013-09-28 14:40:38 +0200831
832/**
Paul Bakkerc27c4e22013-09-23 15:01:36 +0200833 * \def POLARSSL_X509_ALLOW_EXTENSIONS_NON_V3
834 *
835 * If set, the X509 parser will not break-off when parsing an X509 certificate
836 * and encountering an extension in a v1 or v2 certificate.
837 *
838 * Uncomment to prevent an error.
Paul Bakkerc27c4e22013-09-23 15:01:36 +0200839 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200840//#define POLARSSL_X509_ALLOW_EXTENSIONS_NON_V3
Paul Bakkerc27c4e22013-09-23 15:01:36 +0200841
842/**
Paul Bakker5c721f92011-07-27 16:51:09 +0000843 * \def POLARSSL_X509_ALLOW_UNSUPPORTED_CRITICAL_EXTENSION
844 *
845 * If set, the X509 parser will not break-off when parsing an X509 certificate
846 * and encountering an unknown critical extension.
847 *
848 * Uncomment to prevent an error.
Paul Bakker5c721f92011-07-27 16:51:09 +0000849 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200850//#define POLARSSL_X509_ALLOW_UNSUPPORTED_CRITICAL_EXTENSION
Paul Bakker2770fbd2012-07-03 13:30:23 +0000851
852/**
853 * \def POLARSSL_ZLIB_SUPPORT
854 *
855 * If set, the SSL/TLS module uses ZLIB to support compression and
856 * decompression of packet data.
857 *
858 * Used in: library/ssl_tls.c
859 * library/ssl_cli.c
860 * library/ssl_srv.c
861 *
862 * This feature requires zlib library and headers to be present.
863 *
864 * Uncomment to enable use of ZLIB
Paul Bakker2770fbd2012-07-03 13:30:23 +0000865 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +0200866//#define POLARSSL_ZLIB_SUPPORT
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +0200867/* \} name SECTION: PolarSSL feature support */
Paul Bakker0a62cd12011-01-21 11:00:08 +0000868
Paul Bakkerf3b86c12011-01-27 15:24:17 +0000869/**
Paul Bakker0a62cd12011-01-21 11:00:08 +0000870 * \name SECTION: PolarSSL modules
871 *
872 * This section enables or disables entire modules in PolarSSL
873 * \{
874 */
Paul Bakker5121ce52009-01-03 21:22:43 +0000875
Paul Bakkerf3b86c12011-01-27 15:24:17 +0000876/**
Manuel Pégourié-Gonnard92ac76f2013-12-16 17:12:53 +0100877 * \def POLARSSL_AESNI_C
878 *
879 * Enable AES-NI support on x86-64.
880 *
881 * Module: library/aesni.c
882 * Caller: library/aes.c
883 *
884 * Requires: POLARSSL_HAVE_ASM
885 *
886 * This modules adds support for the AES-NI instructions on x86-64
887 */
888#define POLARSSL_AESNI_C
889
890/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +0000891 * \def POLARSSL_AES_C
892 *
893 * Enable the AES block cipher.
894 *
Paul Bakker5121ce52009-01-03 21:22:43 +0000895 * Module: library/aes.c
896 * Caller: library/ssl_tls.c
Paul Bakker96743fc2011-02-12 14:30:57 +0000897 * library/pem.c
Paul Bakker6083fd22011-12-03 21:45:14 +0000898 * library/ctr_drbg.c
Paul Bakker5121ce52009-01-03 21:22:43 +0000899 *
Paul Bakker645ce3a2012-10-31 12:32:41 +0000900 * This module enables the following ciphersuites (if other requisites are
901 * enabled as well):
Manuel Pégourié-Gonnard25781b22013-12-11 16:17:10 +0100902 * TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA
903 * TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA
904 * TLS_ECDH_RSA_WITH_AES_128_CBC_SHA
905 * TLS_ECDH_RSA_WITH_AES_256_CBC_SHA
906 * TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256
907 * TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384
908 * TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256
909 * TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384
910 * TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256
911 * TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384
912 * TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256
913 * TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200914 * TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384
915 * TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384
916 * TLS_DHE_RSA_WITH_AES_256_GCM_SHA384
917 * TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384
918 * TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384
Paul Bakker645ce3a2012-10-31 12:32:41 +0000919 * TLS_DHE_RSA_WITH_AES_256_CBC_SHA256
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200920 * TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA
Paul Bakker41c83d32013-03-20 14:39:14 +0100921 * TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200922 * TLS_DHE_RSA_WITH_AES_256_CBC_SHA
923 * TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
924 * TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
925 * TLS_DHE_RSA_WITH_AES_128_GCM_SHA256
926 * TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256
927 * TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256
928 * TLS_DHE_RSA_WITH_AES_128_CBC_SHA256
929 * TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA
930 * TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA
931 * TLS_DHE_RSA_WITH_AES_128_CBC_SHA
932 * TLS_DHE_PSK_WITH_AES_256_GCM_SHA384
933 * TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA384
934 * TLS_DHE_PSK_WITH_AES_256_CBC_SHA384
935 * TLS_ECDHE_PSK_WITH_AES_256_CBC_SHA
936 * TLS_DHE_PSK_WITH_AES_256_CBC_SHA
937 * TLS_DHE_PSK_WITH_AES_128_GCM_SHA256
938 * TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA256
939 * TLS_DHE_PSK_WITH_AES_128_CBC_SHA256
940 * TLS_ECDHE_PSK_WITH_AES_128_CBC_SHA
941 * TLS_DHE_PSK_WITH_AES_128_CBC_SHA
942 * TLS_RSA_WITH_AES_256_GCM_SHA384
943 * TLS_RSA_WITH_AES_256_CBC_SHA256
944 * TLS_RSA_WITH_AES_256_CBC_SHA
945 * TLS_RSA_WITH_AES_128_GCM_SHA256
946 * TLS_RSA_WITH_AES_128_CBC_SHA256
947 * TLS_RSA_WITH_AES_128_CBC_SHA
948 * TLS_RSA_PSK_WITH_AES_256_GCM_SHA384
949 * TLS_RSA_PSK_WITH_AES_256_CBC_SHA384
950 * TLS_RSA_PSK_WITH_AES_256_CBC_SHA
951 * TLS_RSA_PSK_WITH_AES_128_GCM_SHA256
952 * TLS_RSA_PSK_WITH_AES_128_CBC_SHA256
953 * TLS_RSA_PSK_WITH_AES_128_CBC_SHA
954 * TLS_PSK_WITH_AES_256_GCM_SHA384
955 * TLS_PSK_WITH_AES_256_CBC_SHA384
Paul Bakkerd4a56ec2013-04-16 18:05:29 +0200956 * TLS_PSK_WITH_AES_256_CBC_SHA
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200957 * TLS_PSK_WITH_AES_128_GCM_SHA256
958 * TLS_PSK_WITH_AES_128_CBC_SHA256
959 * TLS_PSK_WITH_AES_128_CBC_SHA
Paul Bakker6deb37e2013-02-19 13:17:08 +0100960 *
Paul Bakkercff68422013-09-15 20:43:33 +0200961 * PEM_PARSE uses AES for decrypting encrypted keys.
Paul Bakker5121ce52009-01-03 21:22:43 +0000962 */
Paul Bakker40e46942009-01-03 21:51:57 +0000963#define POLARSSL_AES_C
Paul Bakker5121ce52009-01-03 21:22:43 +0000964
Paul Bakkerf3b86c12011-01-27 15:24:17 +0000965/**
966 * \def POLARSSL_ARC4_C
967 *
968 * Enable the ARCFOUR stream cipher.
969 *
Paul Bakker5121ce52009-01-03 21:22:43 +0000970 * Module: library/arc4.c
971 * Caller: library/ssl_tls.c
972 *
Paul Bakker41c83d32013-03-20 14:39:14 +0100973 * This module enables the following ciphersuites (if other requisites are
974 * enabled as well):
Manuel Pégourié-Gonnard25781b22013-12-11 16:17:10 +0100975 * TLS_ECDH_ECDSA_WITH_RC4_128_SHA
976 * TLS_ECDH_RSA_WITH_RC4_128_SHA
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200977 * TLS_ECDHE_ECDSA_WITH_RC4_128_SHA
Paul Bakker41c83d32013-03-20 14:39:14 +0100978 * TLS_ECDHE_RSA_WITH_RC4_128_SHA
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +0200979 * TLS_ECDHE_PSK_WITH_RC4_128_SHA
980 * TLS_DHE_PSK_WITH_RC4_128_SHA
981 * TLS_RSA_WITH_RC4_128_SHA
982 * TLS_RSA_WITH_RC4_128_MD5
983 * TLS_RSA_PSK_WITH_RC4_128_SHA
Paul Bakkerd4a56ec2013-04-16 18:05:29 +0200984 * TLS_PSK_WITH_RC4_128_SHA
Paul Bakker5121ce52009-01-03 21:22:43 +0000985 */
Paul Bakker40e46942009-01-03 21:51:57 +0000986#define POLARSSL_ARC4_C
Paul Bakker5121ce52009-01-03 21:22:43 +0000987
Paul Bakkerf3b86c12011-01-27 15:24:17 +0000988/**
Paul Bakkerefc30292011-11-10 14:43:23 +0000989 * \def POLARSSL_ASN1_PARSE_C
990 *
991 * Enable the generic ASN1 parser.
992 *
993 * Module: library/asn1.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +0200994 * Caller: library/x509.c
995 * library/dhm.c
996 * library/pkcs12.c
997 * library/pkcs5.c
998 * library/pkparse.c
Paul Bakkerefc30292011-11-10 14:43:23 +0000999 */
1000#define POLARSSL_ASN1_PARSE_C
1001
1002/**
Paul Bakkerbdb912d2012-02-13 23:11:30 +00001003 * \def POLARSSL_ASN1_WRITE_C
1004 *
1005 * Enable the generic ASN1 writer.
1006 *
1007 * Module: library/asn1write.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001008 * Caller: library/ecdsa.c
1009 * library/pkwrite.c
1010 * library/x509_create.c
1011 * library/x509write_crt.c
1012 * library/x509write_csr.c
Paul Bakkerbdb912d2012-02-13 23:11:30 +00001013 */
1014#define POLARSSL_ASN1_WRITE_C
1015
1016/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001017 * \def POLARSSL_BASE64_C
1018 *
1019 * Enable the Base64 module.
1020 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001021 * Module: library/base64.c
Paul Bakker5690efc2011-05-26 13:16:06 +00001022 * Caller: library/pem.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001023 *
Paul Bakker5690efc2011-05-26 13:16:06 +00001024 * This module is required for PEM support (required by X.509).
Paul Bakker5121ce52009-01-03 21:22:43 +00001025 */
Paul Bakker40e46942009-01-03 21:51:57 +00001026#define POLARSSL_BASE64_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001027
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001028/**
1029 * \def POLARSSL_BIGNUM_C
1030 *
Paul Bakker9a736322012-11-14 12:39:52 +00001031 * Enable the multi-precision integer library.
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001032 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001033 * Module: library/bignum.c
1034 * Caller: library/dhm.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001035 * library/ecp.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001036 * library/rsa.c
1037 * library/ssl_tls.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001038 *
1039 * This module is required for RSA and DHM support.
1040 */
Paul Bakker40e46942009-01-03 21:51:57 +00001041#define POLARSSL_BIGNUM_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001042
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001043/**
Paul Bakkera9379c02012-07-04 11:02:11 +00001044 * \def POLARSSL_BLOWFISH_C
1045 *
1046 * Enable the Blowfish block cipher.
1047 *
1048 * Module: library/blowfish.c
1049 */
1050#define POLARSSL_BLOWFISH_C
1051
1052/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001053 * \def POLARSSL_CAMELLIA_C
1054 *
1055 * Enable the Camellia block cipher.
1056 *
Paul Bakker38119b12009-01-10 23:31:23 +00001057 * Module: library/camellia.c
Paul Bakker13e2dfe2009-07-28 07:18:38 +00001058 * Caller: library/ssl_tls.c
Paul Bakker38119b12009-01-10 23:31:23 +00001059 *
Paul Bakker645ce3a2012-10-31 12:32:41 +00001060 * This module enables the following ciphersuites (if other requisites are
1061 * enabled as well):
Manuel Pégourié-Gonnard25781b22013-12-11 16:17:10 +01001062 * TLS_ECDH_ECDSA_WITH_CAMELLIA_128_CBC_SHA256
1063 * TLS_ECDH_ECDSA_WITH_CAMELLIA_256_CBC_SHA384
1064 * TLS_ECDH_RSA_WITH_CAMELLIA_128_CBC_SHA256
1065 * TLS_ECDH_RSA_WITH_CAMELLIA_256_CBC_SHA384
1066 * TLS_ECDH_ECDSA_WITH_CAMELLIA_128_GCM_SHA256
1067 * TLS_ECDH_ECDSA_WITH_CAMELLIA_256_GCM_SHA384
1068 * TLS_ECDH_RSA_WITH_CAMELLIA_128_GCM_SHA256
1069 * TLS_ECDH_RSA_WITH_CAMELLIA_256_GCM_SHA384
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001070 * TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_GCM_SHA384
1071 * TLS_ECDHE_RSA_WITH_CAMELLIA_256_GCM_SHA384
1072 * TLS_DHE_RSA_WITH_CAMELLIA_256_GCM_SHA384
1073 * TLS_ECDHE_ECDSA_WITH_CAMELLIA_256_CBC_SHA384
1074 * TLS_ECDHE_RSA_WITH_CAMELLIA_256_CBC_SHA384
Paul Bakker645ce3a2012-10-31 12:32:41 +00001075 * TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA256
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001076 * TLS_DHE_RSA_WITH_CAMELLIA_256_CBC_SHA
1077 * TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_GCM_SHA256
1078 * TLS_ECDHE_RSA_WITH_CAMELLIA_128_GCM_SHA256
1079 * TLS_DHE_RSA_WITH_CAMELLIA_128_GCM_SHA256
1080 * TLS_ECDHE_ECDSA_WITH_CAMELLIA_128_CBC_SHA256
1081 * TLS_ECDHE_RSA_WITH_CAMELLIA_128_CBC_SHA256
1082 * TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA256
1083 * TLS_DHE_RSA_WITH_CAMELLIA_128_CBC_SHA
1084 * TLS_DHE_PSK_WITH_CAMELLIA_256_GCM_SHA384
1085 * TLS_ECDHE_PSK_WITH_CAMELLIA_256_CBC_SHA384
1086 * TLS_DHE_PSK_WITH_CAMELLIA_256_CBC_SHA384
1087 * TLS_DHE_PSK_WITH_CAMELLIA_128_GCM_SHA256
1088 * TLS_DHE_PSK_WITH_CAMELLIA_128_CBC_SHA256
1089 * TLS_ECDHE_PSK_WITH_CAMELLIA_128_CBC_SHA256
1090 * TLS_RSA_WITH_CAMELLIA_256_GCM_SHA384
1091 * TLS_RSA_WITH_CAMELLIA_256_CBC_SHA256
1092 * TLS_RSA_WITH_CAMELLIA_256_CBC_SHA
1093 * TLS_RSA_WITH_CAMELLIA_128_GCM_SHA256
1094 * TLS_RSA_WITH_CAMELLIA_128_CBC_SHA256
1095 * TLS_RSA_WITH_CAMELLIA_128_CBC_SHA
1096 * TLS_RSA_PSK_WITH_CAMELLIA_256_GCM_SHA384
1097 * TLS_RSA_PSK_WITH_CAMELLIA_256_CBC_SHA384
1098 * TLS_RSA_PSK_WITH_CAMELLIA_128_GCM_SHA256
1099 * TLS_RSA_PSK_WITH_CAMELLIA_128_CBC_SHA256
1100 * TLS_PSK_WITH_CAMELLIA_256_GCM_SHA384
1101 * TLS_PSK_WITH_CAMELLIA_256_CBC_SHA384
1102 * TLS_PSK_WITH_CAMELLIA_128_GCM_SHA256
1103 * TLS_PSK_WITH_CAMELLIA_128_CBC_SHA256
Paul Bakker38119b12009-01-10 23:31:23 +00001104 */
1105#define POLARSSL_CAMELLIA_C
1106
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001107/**
1108 * \def POLARSSL_CERTS_C
1109 *
1110 * Enable the test certificates.
1111 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001112 * Module: library/certs.c
1113 * Caller:
1114 *
Manuel Pégourié-Gonnard18dc0e22013-10-27 14:35:02 +01001115 * Requires: POLARSSL_PEM_PARSE_C
1116 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001117 * This module is used for testing (ssl_client/server).
1118 */
Paul Bakker40e46942009-01-03 21:51:57 +00001119#define POLARSSL_CERTS_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001120
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001121/**
1122 * \def POLARSSL_CIPHER_C
1123 *
1124 * Enable the generic cipher layer.
1125 *
Paul Bakker8123e9d2011-01-06 15:37:30 +00001126 * Module: library/cipher.c
Paul Bakker04784f52013-08-19 13:30:57 +02001127 * Caller: library/ssl_tls.c
Paul Bakker8123e9d2011-01-06 15:37:30 +00001128 *
1129 * Uncomment to enable generic cipher wrappers.
1130 */
1131#define POLARSSL_CIPHER_C
1132
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001133/**
Paul Bakker0e04d0e2011-11-27 14:46:59 +00001134 * \def POLARSSL_CTR_DRBG_C
1135 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001136 * Enable the CTR_DRBG AES-256-based random generator.
Paul Bakker0e04d0e2011-11-27 14:46:59 +00001137 *
1138 * Module: library/ctr_drbg.c
1139 * Caller:
1140 *
Paul Bakker6083fd22011-12-03 21:45:14 +00001141 * Requires: POLARSSL_AES_C
1142 *
Paul Bakker0e04d0e2011-11-27 14:46:59 +00001143 * This module provides the CTR_DRBG AES-256 random number generator.
1144 */
1145#define POLARSSL_CTR_DRBG_C
1146
1147/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001148 * \def POLARSSL_DEBUG_C
1149 *
1150 * Enable the debug functions.
1151 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001152 * Module: library/debug.c
1153 * Caller: library/ssl_cli.c
1154 * library/ssl_srv.c
1155 * library/ssl_tls.c
1156 *
1157 * This module provides debugging functions.
1158 */
Paul Bakker40e46942009-01-03 21:51:57 +00001159#define POLARSSL_DEBUG_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001160
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001161/**
1162 * \def POLARSSL_DES_C
1163 *
1164 * Enable the DES block cipher.
1165 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001166 * Module: library/des.c
Paul Bakker6deb37e2013-02-19 13:17:08 +01001167 * Caller: library/pem.c
1168 * library/ssl_tls.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001169 *
Paul Bakker645ce3a2012-10-31 12:32:41 +00001170 * This module enables the following ciphersuites (if other requisites are
1171 * enabled as well):
Manuel Pégourié-Gonnard25781b22013-12-11 16:17:10 +01001172 * TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA
1173 * TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001174 * TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA
Paul Bakker41c83d32013-03-20 14:39:14 +01001175 * TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001176 * TLS_DHE_RSA_WITH_3DES_EDE_CBC_SHA
1177 * TLS_ECDHE_PSK_WITH_3DES_EDE_CBC_SHA
1178 * TLS_DHE_PSK_WITH_3DES_EDE_CBC_SHA
1179 * TLS_RSA_WITH_3DES_EDE_CBC_SHA
1180 * TLS_RSA_PSK_WITH_3DES_EDE_CBC_SHA
Paul Bakkerd4a56ec2013-04-16 18:05:29 +02001181 * TLS_PSK_WITH_3DES_EDE_CBC_SHA
Paul Bakker6deb37e2013-02-19 13:17:08 +01001182 *
Paul Bakkercff68422013-09-15 20:43:33 +02001183 * PEM_PARSE uses DES/3DES for decrypting encrypted keys.
Paul Bakker5121ce52009-01-03 21:22:43 +00001184 */
Paul Bakker40e46942009-01-03 21:51:57 +00001185#define POLARSSL_DES_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001186
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001187/**
1188 * \def POLARSSL_DHM_C
1189 *
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001190 * Enable the Diffie-Hellman-Merkle module.
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001191 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001192 * Module: library/dhm.c
1193 * Caller: library/ssl_cli.c
1194 * library/ssl_srv.c
1195 *
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001196 * This module is used by the following key exchanges:
1197 * DHE-RSA, DHE-PSK
Paul Bakker5121ce52009-01-03 21:22:43 +00001198 */
Paul Bakker40e46942009-01-03 21:51:57 +00001199#define POLARSSL_DHM_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001200
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001201/**
Paul Bakkerd589a0d2013-03-13 16:30:17 +01001202 * \def POLARSSL_ECDH_C
1203 *
1204 * Enable the elliptic curve Diffie-Hellman library.
1205 *
1206 * Module: library/ecdh.c
Paul Bakker41c83d32013-03-20 14:39:14 +01001207 * Caller: library/ssl_cli.c
1208 * library/ssl_srv.c
1209 *
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001210 * This module is used by the following key exchanges:
1211 * ECDHE-ECDSA, ECDHE-RSA, DHE-PSK
Paul Bakkerd589a0d2013-03-13 16:30:17 +01001212 *
1213 * Requires: POLARSSL_ECP_C
1214 */
1215#define POLARSSL_ECDH_C
1216
1217/**
1218 * \def POLARSSL_ECDSA_C
1219 *
1220 * Enable the elliptic curve DSA library.
1221 *
1222 * Module: library/ecdsa.c
1223 * Caller:
1224 *
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001225 * This module is used by the following key exchanges:
1226 * ECDHE-ECDSA
1227 *
Manuel Pégourié-Gonnard4846f5e2013-08-08 14:36:15 +02001228 * Requires: POLARSSL_ECP_C, POLARSSL_ASN1_WRITE_C, POLARSSL_ASN1_PARSE_C
Paul Bakkerd589a0d2013-03-13 16:30:17 +01001229 */
1230#define POLARSSL_ECDSA_C
1231
1232/**
1233 * \def POLARSSL_ECP_C
1234 *
1235 * Enable the elliptic curve over GF(p) library.
1236 *
1237 * Module: library/ecp.c
1238 * Caller: library/ecdh.c
1239 * library/ecdsa.c
1240 *
Manuel Pégourié-Gonnardb8012fc2013-10-10 15:40:49 +02001241 * Requires: POLARSSL_BIGNUM_C and at least one POLARSSL_ECP_DP_XXX_ENABLED
Paul Bakkerd589a0d2013-03-13 16:30:17 +01001242 */
1243#define POLARSSL_ECP_C
1244
1245/**
Paul Bakker6083fd22011-12-03 21:45:14 +00001246 * \def POLARSSL_ENTROPY_C
1247 *
1248 * Enable the platform-specific entropy code.
1249 *
1250 * Module: library/entropy.c
1251 * Caller:
1252 *
Paul Bakker9e36f042013-06-30 14:34:05 +02001253 * Requires: POLARSSL_SHA512_C
Paul Bakker6083fd22011-12-03 21:45:14 +00001254 *
1255 * This module provides a generic entropy pool
1256 */
1257#define POLARSSL_ENTROPY_C
1258
1259/**
Paul Bakker9d781402011-05-09 16:17:09 +00001260 * \def POLARSSL_ERROR_C
1261 *
1262 * Enable error code to error string conversion.
1263 *
1264 * Module: library/error.c
1265 * Caller:
1266 *
1267 * This module enables err_strerror().
1268 */
1269#define POLARSSL_ERROR_C
1270
1271/**
Paul Bakker89e80c92012-03-20 13:50:09 +00001272 * \def POLARSSL_GCM_C
1273 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001274 * Enable the Galois/Counter Mode (GCM) for AES.
Paul Bakker89e80c92012-03-20 13:50:09 +00001275 *
1276 * Module: library/gcm.c
1277 *
Manuel Pégourié-Gonnard7bd8a992013-10-24 13:39:39 +02001278 * Requires: POLARSSL_AES_C or POLARSSL_CAMELLIA_C
Paul Bakker645ce3a2012-10-31 12:32:41 +00001279 *
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001280 * This module enables the AES-GCM and CAMELLIA-GCM ciphersuites, if other
1281 * requisites are enabled as well.
Paul Bakker89e80c92012-03-20 13:50:09 +00001282 */
1283#define POLARSSL_GCM_C
1284
1285/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001286 * \def POLARSSL_HAVEGE_C
1287 *
1288 * Enable the HAVEGE random generator.
1289 *
Paul Bakker2a844242013-06-24 13:01:53 +02001290 * Warning: the HAVEGE random generator is not suitable for virtualized
1291 * environments
1292 *
1293 * Warning: the HAVEGE random generator is dependent on timing and specific
1294 * processor traits. It is therefore not advised to use HAVEGE as
1295 * your applications primary random generator or primary entropy pool
1296 * input. As a secondary input to your entropy pool, it IS able add
1297 * the (limited) extra entropy it provides.
1298 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001299 * Module: library/havege.c
1300 * Caller:
1301 *
Paul Bakker5690efc2011-05-26 13:16:06 +00001302 * Requires: POLARSSL_TIMING_C
1303 *
Paul Bakker2a844242013-06-24 13:01:53 +02001304 * Uncomment to enable the HAVEGE random generator.
Paul Bakker2a844242013-06-24 13:01:53 +02001305 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +02001306//#define POLARSSL_HAVEGE_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001307
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001308/**
1309 * \def POLARSSL_MD_C
1310 *
1311 * Enable the generic message digest layer.
1312 *
Paul Bakker17373852011-01-06 14:20:01 +00001313 * Module: library/md.c
1314 * Caller:
1315 *
1316 * Uncomment to enable generic message digest wrappers.
1317 */
1318#define POLARSSL_MD_C
1319
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001320/**
1321 * \def POLARSSL_MD2_C
1322 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001323 * Enable the MD2 hash algorithm.
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001324 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001325 * Module: library/md2.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001326 * Caller:
Paul Bakker5121ce52009-01-03 21:22:43 +00001327 *
1328 * Uncomment to enable support for (rare) MD2-signed X.509 certs.
Paul Bakker6506aff2009-07-28 20:52:02 +00001329 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +02001330//#define POLARSSL_MD2_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001331
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001332/**
1333 * \def POLARSSL_MD4_C
1334 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001335 * Enable the MD4 hash algorithm.
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001336 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001337 * Module: library/md4.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001338 * Caller:
Paul Bakker5121ce52009-01-03 21:22:43 +00001339 *
1340 * Uncomment to enable support for (rare) MD4-signed X.509 certs.
Paul Bakker6506aff2009-07-28 20:52:02 +00001341 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +02001342//#define POLARSSL_MD4_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001343
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001344/**
1345 * \def POLARSSL_MD5_C
1346 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001347 * Enable the MD5 hash algorithm.
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001348 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001349 * Module: library/md5.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001350 * Caller: library/md.c
1351 * library/pem.c
Paul Bakker6deb37e2013-02-19 13:17:08 +01001352 * library/ssl_tls.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001353 *
1354 * This module is required for SSL/TLS and X.509.
Paul Bakkercff68422013-09-15 20:43:33 +02001355 * PEM_PARSE uses MD5 for decrypting encrypted keys.
Paul Bakker5121ce52009-01-03 21:22:43 +00001356 */
Paul Bakker40e46942009-01-03 21:51:57 +00001357#define POLARSSL_MD5_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001358
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001359/**
Paul Bakker6e339b52013-07-03 13:37:05 +02001360 * \def POLARSSL_MEMORY_C
1361 *
1362 * Enable the memory allocation layer.
1363 * By default PolarSSL uses the system-provided malloc() and free().
1364 * (As long as POLARSSL_MEMORY_STDMALLOC and POLARSSL_MEMORY_STDFREE
1365 * are defined and unmodified)
1366 *
1367 * This allows different allocators (self-implemented or provided)
1368 *
1369 * Enable this layer to allow use of alternative memory allocators.
Paul Bakker6e339b52013-07-03 13:37:05 +02001370 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +02001371//#define POLARSSL_MEMORY_C
Paul Bakker6e339b52013-07-03 13:37:05 +02001372
1373/**
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001374 * \def POLARSSL_MEMORY_BUFFER_ALLOC_C
1375 *
1376 * Enable the buffer allocator implementation that makes use of a (stack)
1377 * based buffer to 'allocate' dynamic memory. (replaces malloc() and free()
1378 * calls)
Paul Bakker6e339b52013-07-03 13:37:05 +02001379 *
1380 * Module: library/memory_buffer_alloc.c
1381 *
1382 * Requires: POLARSSL_MEMORY_C
1383 *
1384 * Enable this module to enable the buffer memory allocator.
Paul Bakker6e339b52013-07-03 13:37:05 +02001385 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +02001386//#define POLARSSL_MEMORY_BUFFER_ALLOC_C
Paul Bakker6e339b52013-07-03 13:37:05 +02001387
1388/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001389 * \def POLARSSL_NET_C
1390 *
1391 * Enable the TCP/IP networking routines.
1392 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001393 * Module: library/net.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001394 *
1395 * This module provides TCP/IP networking routines.
1396 */
Paul Bakker40e46942009-01-03 21:51:57 +00001397#define POLARSSL_NET_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001398
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001399/**
Paul Bakkerc70b9822013-04-07 22:00:46 +02001400 * \def POLARSSL_OID_C
1401 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001402 * Enable the OID database.
Paul Bakkerc70b9822013-04-07 22:00:46 +02001403 *
1404 * Module: library/oid.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001405 * Caller: library/asn1write.c
1406 * library/pkcs5.c
1407 * library/pkparse.c
1408 * library/pkwrite.c
1409 * library/rsa.c
1410 * library/x509.c
1411 * library/x509_create.c
1412 * library/x509_crl.c
1413 * library/x509_crt.c
1414 * library/x509_csr.c
1415 * library/x509write_crt.c
1416 * library/x509write_csr.c
Paul Bakkerc70b9822013-04-07 22:00:46 +02001417 *
1418 * This modules translates between OIDs and internal values.
1419 */
1420#define POLARSSL_OID_C
1421
1422/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001423 * \def POLARSSL_PADLOCK_C
1424 *
1425 * Enable VIA Padlock support on x86.
1426 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001427 * Module: library/padlock.c
1428 * Caller: library/aes.c
1429 *
Manuel Pégourié-Gonnard92ac76f2013-12-16 17:12:53 +01001430 * Requires: POLARSSL_HAVE_ASM
1431 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001432 * This modules adds support for the VIA PadLock on x86.
1433 */
Paul Bakker40e46942009-01-03 21:51:57 +00001434#define POLARSSL_PADLOCK_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001435
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001436/**
Paul Bakkerf518b162012-08-23 13:03:18 +00001437 * \def POLARSSL_PBKDF2_C
1438 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001439 * Enable PKCS#5 PBKDF2 key derivation function.
Paul Bakkerb0c19a42013-06-24 19:26:38 +02001440 * DEPRECATED: Use POLARSSL_PKCS5_C instead
Paul Bakkerf518b162012-08-23 13:03:18 +00001441 *
1442 * Module: library/pbkdf2.c
1443 *
Paul Bakkerb0c19a42013-06-24 19:26:38 +02001444 * Requires: POLARSSL_PKCS5_C
Paul Bakkerf518b162012-08-23 13:03:18 +00001445 *
1446 * This module adds support for the PKCS#5 PBKDF2 key derivation function.
Paul Bakkerf518b162012-08-23 13:03:18 +00001447 */
Paul Bakker370e90c2013-04-08 15:19:43 +02001448#define POLARSSL_PBKDF2_C
Paul Bakkerf518b162012-08-23 13:03:18 +00001449
1450/**
Paul Bakkercff68422013-09-15 20:43:33 +02001451 * \def POLARSSL_PEM_PARSE_C
Paul Bakker96743fc2011-02-12 14:30:57 +00001452 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001453 * Enable PEM decoding / parsing.
Paul Bakker96743fc2011-02-12 14:30:57 +00001454 *
1455 * Module: library/pem.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001456 * Caller: library/dhm.c
Paul Bakkercff68422013-09-15 20:43:33 +02001457 * library/pkparse.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001458 * library/x509_crl.c
1459 * library/x509_crt.c
1460 * library/x509_csr.c
Paul Bakker96743fc2011-02-12 14:30:57 +00001461 *
Paul Bakker5690efc2011-05-26 13:16:06 +00001462 * Requires: POLARSSL_BASE64_C
1463 *
Paul Bakkercff68422013-09-15 20:43:33 +02001464 * This modules adds support for decoding / parsing PEM files.
Paul Bakker96743fc2011-02-12 14:30:57 +00001465 */
Paul Bakkercff68422013-09-15 20:43:33 +02001466#define POLARSSL_PEM_PARSE_C
1467
1468/**
1469 * \def POLARSSL_PEM_WRITE_C
1470 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001471 * Enable PEM encoding / writing.
Paul Bakkercff68422013-09-15 20:43:33 +02001472 *
1473 * Module: library/pem.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001474 * Caller: library/pkwrite.c
1475 * library/x509write_crt.c
1476 * library/x509write_csr.c
Paul Bakkercff68422013-09-15 20:43:33 +02001477 *
1478 * Requires: POLARSSL_BASE64_C
1479 *
1480 * This modules adds support for encoding / writing PEM files.
1481 */
1482#define POLARSSL_PEM_WRITE_C
Paul Bakker96743fc2011-02-12 14:30:57 +00001483
1484/**
Manuel Pégourié-Gonnardc40b4c32013-08-22 13:29:31 +02001485 * \def POLARSSL_PK_C
1486 *
1487 * Enable the generic public (asymetric) key layer.
1488 *
1489 * Module: library/pk.c
Manuel Pégourié-Gonnard1a483832013-09-20 12:29:15 +02001490 * Caller: library/ssl_tls.c
Manuel Pégourié-Gonnardc40b4c32013-08-22 13:29:31 +02001491 * library/ssl_cli.c
1492 * library/ssl_srv.c
1493 *
Manuel Pégourié-Gonnard1a483832013-09-20 12:29:15 +02001494 * Requires: POLARSSL_RSA_C or POLARSSL_ECP_C
1495 *
Manuel Pégourié-Gonnardc40b4c32013-08-22 13:29:31 +02001496 * Uncomment to enable generic public key wrappers.
1497 */
1498#define POLARSSL_PK_C
1499
1500/**
Paul Bakker4606c732013-09-15 17:04:23 +02001501 * \def POLARSSL_PK_PARSE_C
1502 *
1503 * Enable the generic public (asymetric) key parser.
1504 *
1505 * Module: library/pkparse.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001506 * Caller: library/x509_crt.c
1507 * library/x509_csr.c
Paul Bakker4606c732013-09-15 17:04:23 +02001508 *
1509 * Requires: POLARSSL_PK_C
1510 *
1511 * Uncomment to enable generic public key parse functions.
1512 */
1513#define POLARSSL_PK_PARSE_C
1514
1515/**
1516 * \def POLARSSL_PK_WRITE_C
1517 *
Paul Bakkerf20ba4b2013-09-16 22:46:20 +02001518 * Enable the generic public (asymetric) key writer.
Paul Bakker4606c732013-09-15 17:04:23 +02001519 *
1520 * Module: library/pkwrite.c
1521 * Caller: library/x509write.c
1522 *
1523 * Requires: POLARSSL_PK_C
1524 *
1525 * Uncomment to enable generic public key write functions.
1526 */
1527#define POLARSSL_PK_WRITE_C
1528
1529/**
Paul Bakkerb0c19a42013-06-24 19:26:38 +02001530 * \def POLARSSL_PKCS5_C
1531 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001532 * Enable PKCS#5 functions.
Paul Bakkerb0c19a42013-06-24 19:26:38 +02001533 *
1534 * Module: library/pkcs5.c
1535 *
1536 * Requires: POLARSSL_MD_C
1537 *
1538 * This module adds support for the PKCS#5 functions.
1539 */
1540#define POLARSSL_PKCS5_C
1541
1542/**
Paul Bakker5690efc2011-05-26 13:16:06 +00001543 * \def POLARSSL_PKCS11_C
1544 *
Paul Bakkereb2c6582012-09-27 19:15:01 +00001545 * Enable wrapper for PKCS#11 smartcard support.
Paul Bakker5690efc2011-05-26 13:16:06 +00001546 *
Manuel Pégourié-Gonnard51be5592013-08-22 13:35:53 +02001547 * Module: library/pkcs11.c
1548 * Caller: library/pk.c
Paul Bakker5690efc2011-05-26 13:16:06 +00001549 *
Manuel Pégourié-Gonnard51be5592013-08-22 13:35:53 +02001550 * Requires: POLARSSL_PK_C
Paul Bakker5690efc2011-05-26 13:16:06 +00001551 *
Paul Bakkereb2c6582012-09-27 19:15:01 +00001552 * This module enables SSL/TLS PKCS #11 smartcard support.
Paul Bakker5690efc2011-05-26 13:16:06 +00001553 * Requires the presence of the PKCS#11 helper library (libpkcs11-helper)
Paul Bakker5690efc2011-05-26 13:16:06 +00001554 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +02001555//#define POLARSSL_PKCS11_C
Paul Bakker5690efc2011-05-26 13:16:06 +00001556
1557/**
Paul Bakkerf1f21fe2013-06-24 19:17:19 +02001558 * \def POLARSSL_PKCS12_C
1559 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001560 * Enable PKCS#12 PBE functions.
Paul Bakkerf1f21fe2013-06-24 19:17:19 +02001561 * Adds algorithms for parsing PKCS#8 encrypted private keys
1562 *
1563 * Module: library/pkcs12.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001564 * Caller: library/pkparse.c
Paul Bakkerf1f21fe2013-06-24 19:17:19 +02001565 *
Paul Bakkerb0713c72013-06-24 19:34:08 +02001566 * Requires: POLARSSL_ASN1_PARSE_C, POLARSSL_CIPHER_C, POLARSSL_MD_C
1567 * Can use: POLARSSL_ARC4_C
Paul Bakkerf1f21fe2013-06-24 19:17:19 +02001568 *
1569 * This module enables PKCS#12 functions.
1570 */
1571#define POLARSSL_PKCS12_C
1572
1573/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001574 * \def POLARSSL_RSA_C
1575 *
1576 * Enable the RSA public-key cryptosystem.
1577 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001578 * Module: library/rsa.c
1579 * Caller: library/ssl_cli.c
1580 * library/ssl_srv.c
1581 * library/ssl_tls.c
1582 * library/x509.c
1583 *
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001584 * This module is used by the following key exchanges:
1585 * RSA, DHE-RSA, ECDHE-RSA, RSA-PSK
Paul Bakker5690efc2011-05-26 13:16:06 +00001586 *
Manuel Pégourié-Gonnard9d703732013-10-25 18:01:50 +02001587 * Requires: POLARSSL_BIGNUM_C, POLARSSL_OID_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001588 */
Paul Bakker40e46942009-01-03 21:51:57 +00001589#define POLARSSL_RSA_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001590
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001591/**
1592 * \def POLARSSL_SHA1_C
1593 *
1594 * Enable the SHA1 cryptographic hash algorithm.
1595 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001596 * Module: library/sha1.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001597 * Caller: library/md.c
1598 * library/ssl_cli.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001599 * library/ssl_srv.c
1600 * library/ssl_tls.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001601 * library/x509write_crt.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001602 *
1603 * This module is required for SSL/TLS and SHA1-signed certificates.
1604 */
Paul Bakker40e46942009-01-03 21:51:57 +00001605#define POLARSSL_SHA1_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001606
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001607/**
Paul Bakker9e36f042013-06-30 14:34:05 +02001608 * \def POLARSSL_SHA256_C
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001609 *
1610 * Enable the SHA-224 and SHA-256 cryptographic hash algorithms.
Paul Bakker9e36f042013-06-30 14:34:05 +02001611 * (Used to be POLARSSL_SHA2_C)
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001612 *
Paul Bakker9e36f042013-06-30 14:34:05 +02001613 * Module: library/sha256.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001614 * Caller: library/entropy.c
1615 * library/md.c
1616 * library/ssl_cli.c
1617 * library/ssl_srv.c
1618 * library/ssl_tls.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001619 *
1620 * This module adds support for SHA-224 and SHA-256.
Paul Bakker769075d2012-11-24 11:26:46 +01001621 * This module is required for the SSL/TLS 1.2 PRF function.
Paul Bakker5121ce52009-01-03 21:22:43 +00001622 */
Paul Bakker9e36f042013-06-30 14:34:05 +02001623#define POLARSSL_SHA256_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001624
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001625/**
Paul Bakker9e36f042013-06-30 14:34:05 +02001626 * \def POLARSSL_SHA512_C
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001627 *
1628 * Enable the SHA-384 and SHA-512 cryptographic hash algorithms.
Paul Bakker9e36f042013-06-30 14:34:05 +02001629 * (Used to be POLARSSL_SHA4_C)
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001630 *
Paul Bakker9e36f042013-06-30 14:34:05 +02001631 * Module: library/sha512.c
Manuel Pégourié-Gonnardfe286462013-09-20 14:10:14 +02001632 * Caller: library/entropy.c
1633 * library/md.c
1634 * library/ssl_cli.c
1635 * library/ssl_srv.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001636 *
1637 * This module adds support for SHA-384 and SHA-512.
1638 */
Paul Bakker9e36f042013-06-30 14:34:05 +02001639#define POLARSSL_SHA512_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001640
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001641/**
Paul Bakker0a597072012-09-25 21:55:46 +00001642 * \def POLARSSL_SSL_CACHE_C
1643 *
1644 * Enable simple SSL cache implementation.
1645 *
1646 * Module: library/ssl_cache.c
1647 * Caller:
1648 *
1649 * Requires: POLARSSL_SSL_CACHE_C
1650 */
1651#define POLARSSL_SSL_CACHE_C
1652
1653/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001654 * \def POLARSSL_SSL_CLI_C
1655 *
1656 * Enable the SSL/TLS client code.
1657 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001658 * Module: library/ssl_cli.c
1659 * Caller:
1660 *
Paul Bakker5690efc2011-05-26 13:16:06 +00001661 * Requires: POLARSSL_SSL_TLS_C
1662 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001663 * This module is required for SSL/TLS client support.
1664 */
Paul Bakker40e46942009-01-03 21:51:57 +00001665#define POLARSSL_SSL_CLI_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001666
Paul Bakker9a736322012-11-14 12:39:52 +00001667/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001668 * \def POLARSSL_SSL_SRV_C
1669 *
1670 * Enable the SSL/TLS server code.
1671 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001672 * Module: library/ssl_srv.c
1673 * Caller:
1674 *
Paul Bakker5690efc2011-05-26 13:16:06 +00001675 * Requires: POLARSSL_SSL_TLS_C
1676 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001677 * This module is required for SSL/TLS server support.
1678 */
Paul Bakker40e46942009-01-03 21:51:57 +00001679#define POLARSSL_SSL_SRV_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001680
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001681/**
1682 * \def POLARSSL_SSL_TLS_C
1683 *
Paul Bakkere29ab062011-05-18 13:26:54 +00001684 * Enable the generic SSL/TLS code.
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001685 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001686 * Module: library/ssl_tls.c
1687 * Caller: library/ssl_cli.c
1688 * library/ssl_srv.c
1689 *
Manuel Pégourié-Gonnard1a483832013-09-20 12:29:15 +02001690 * Requires: POLARSSL_CIPHER_C, POLARSSL_MD_C
Paul Bakker577e0062013-08-28 11:57:20 +02001691 * and at least one of the POLARSSL_SSL_PROTO_* defines
Paul Bakker5690efc2011-05-26 13:16:06 +00001692 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001693 * This module is required for SSL/TLS.
1694 */
Paul Bakker40e46942009-01-03 21:51:57 +00001695#define POLARSSL_SSL_TLS_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001696
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001697/**
Paul Bakker2466d932013-09-28 14:40:38 +02001698 * \def POLARSSL_THREADING_C
1699 *
1700 * Enable the threading abstraction layer.
1701 * By default PolarSSL assumes it is used in a non-threaded environment or that
1702 * contexts are not shared between threads. If you do intend to use contexts
1703 * between threads, you will need to enable this layer to prevent race
1704 * conditions.
1705 *
1706 * Module: library/threading.c
1707 *
1708 * This allows different threading implementations (self-implemented or
1709 * provided).
1710 *
Paul Bakkera8fd3e32013-12-31 11:54:08 +01001711 * You will have to enable either POLARSSL_THREADING_ALT or
1712 * POLARSSL_THREADING_PTHREAD.
Paul Bakker2466d932013-09-28 14:40:38 +02001713 *
1714 * Enable this layer to allow use of mutexes within PolarSSL
Paul Bakker2466d932013-09-28 14:40:38 +02001715 */
Paul Bakkera7ea6a52013-10-15 11:55:10 +02001716//#define POLARSSL_THREADING_C
Paul Bakker2466d932013-09-28 14:40:38 +02001717
1718/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001719 * \def POLARSSL_TIMING_C
1720 *
1721 * Enable the portable timing interface.
1722 *
Paul Bakker5121ce52009-01-03 21:22:43 +00001723 * Module: library/timing.c
1724 * Caller: library/havege.c
1725 *
1726 * This module is used by the HAVEGE random number generator.
Paul Bakkerecd54fb2013-07-03 14:48:29 +02001727 */
Paul Bakkerdcbfdcc2013-09-10 16:16:50 +02001728#define POLARSSL_TIMING_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001729
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001730/**
1731 * \def POLARSSL_VERSION_C
1732 *
1733 * Enable run-time version information.
1734 *
Paul Bakker0a62cd12011-01-21 11:00:08 +00001735 * Module: library/version.c
1736 *
1737 * This module provides run-time version information.
1738 */
1739#define POLARSSL_VERSION_C
1740
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001741/**
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001742 * \def POLARSSL_X509_USE_C
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001743 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001744 * Enable X.509 core for using certificates.
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001745 *
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001746 * Module: library/x509.c
1747 * Caller: library/x509_crl.c
1748 * library/x509_crt.c
1749 * library/x509_csr.c
Paul Bakker5121ce52009-01-03 21:22:43 +00001750 *
Paul Bakkerc70b9822013-04-07 22:00:46 +02001751 * Requires: POLARSSL_ASN1_PARSE_C, POLARSSL_BIGNUM_C, POLARSSL_OID_C,
Paul Bakker4606c732013-09-15 17:04:23 +02001752 * POLARSSL_PK_PARSE_C
Paul Bakker5690efc2011-05-26 13:16:06 +00001753 *
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001754 * This module is required for the X.509 parsing modules.
Paul Bakker5121ce52009-01-03 21:22:43 +00001755 */
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001756#define POLARSSL_X509_USE_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001757
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001758/**
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001759 * \def POLARSSL_X509_CRT_PARSE_C
Paul Bakkerbdb912d2012-02-13 23:11:30 +00001760 *
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001761 * Enable X.509 certificate parsing.
Paul Bakkerbdb912d2012-02-13 23:11:30 +00001762 *
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001763 * Module: library/x509_crt.c
1764 * Caller: library/ssl_cli.c
1765 * library/ssl_srv.c
1766 * library/ssl_tls.c
1767 *
1768 * Requires: POLARSSL_X509_USE_C
1769 *
1770 * This module is required for X.509 certificate parsing.
1771 */
1772#define POLARSSL_X509_CRT_PARSE_C
1773
1774/**
1775 * \def POLARSSL_X509_CRL_PARSE_C
1776 *
1777 * Enable X.509 CRL parsing.
1778 *
1779 * Module: library/x509_crl.c
1780 * Caller: library/x509_crt.c
1781 *
1782 * Requires: POLARSSL_X509_USE_C
1783 *
1784 * This module is required for X.509 CRL parsing.
1785 */
1786#define POLARSSL_X509_CRL_PARSE_C
1787
1788/**
1789 * \def POLARSSL_X509_CSR_PARSE_C
1790 *
1791 * Enable X.509 Certificate Signing Request (CSR) parsing.
1792 *
1793 * Module: library/x509_csr.c
1794 * Caller: library/x509_crt_write.c
1795 *
1796 * Requires: POLARSSL_X509_USE_C
1797 *
1798 * This module is used for reading X.509 certificate request.
1799 */
1800#define POLARSSL_X509_CSR_PARSE_C
1801
1802/**
1803 * \def POLARSSL_X509_CREATE_C
1804 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001805 * Enable X.509 core for creating certificates.
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001806 *
1807 * Module: library/x509_create.c
Paul Bakkerbdb912d2012-02-13 23:11:30 +00001808 *
Paul Bakker4606c732013-09-15 17:04:23 +02001809 * Requires: POLARSSL_BIGNUM_C, POLARSSL_OID_C, POLARSSL_PK_WRITE_C
Paul Bakkerbdb912d2012-02-13 23:11:30 +00001810 *
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001811 * This module is the basis for creating X.509 certificates and CSRs.
1812 */
1813#define POLARSSL_X509_CREATE_C
1814
1815/**
1816 * \def POLARSSL_X509_CRT_WRITE_C
1817 *
1818 * Enable creating X.509 certificates.
1819 *
1820 * Module: library/x509_crt_write.c
1821 *
1822 * Requires: POLARSSL_CREATE_C
1823 *
1824 * This module is required for X.509 certificate creation.
1825 */
1826#define POLARSSL_X509_CRT_WRITE_C
1827
1828/**
1829 * \def POLARSSL_X509_CSR_WRITE_C
1830 *
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001831 * Enable creating X.509 Certificate Signing Requests (CSR).
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001832 *
1833 * Module: library/x509_csr_write.c
1834 *
1835 * Requires: POLARSSL_CREATE_C
1836 *
Paul Bakkerbdb912d2012-02-13 23:11:30 +00001837 * This module is required for X.509 certificate request writing.
1838 */
Paul Bakker7c6b2c32013-09-16 13:49:26 +02001839#define POLARSSL_X509_CSR_WRITE_C
Paul Bakkerbdb912d2012-02-13 23:11:30 +00001840
1841/**
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001842 * \def POLARSSL_XTEA_C
Paul Bakker5121ce52009-01-03 21:22:43 +00001843 *
Paul Bakkerf3b86c12011-01-27 15:24:17 +00001844 * Enable the XTEA block cipher.
1845 *
Paul Bakker7a7c78f2009-01-04 18:15:48 +00001846 * Module: library/xtea.c
1847 * Caller:
1848 */
1849#define POLARSSL_XTEA_C
Manuel Pégourié-Gonnard39d2adb2012-10-31 09:26:55 +01001850
Manuel Pégourié-Gonnard09fff7e2013-09-20 13:45:36 +02001851/* \} name SECTION: PolarSSL modules */
Paul Bakker7a7c78f2009-01-04 18:15:48 +00001852
Paul Bakker9bcf16c2013-06-24 19:31:17 +02001853/**
1854 * \name SECTION: Module configuration options
1855 *
1856 * This section allows for the setting of module specific sizes and
1857 * configuration options. The default values are already present in the
1858 * relevant header files and should suffice for the regular use cases.
1859 * Our advice is to enable POLARSSL_CONFIG_OPTIONS and change values here
1860 * only if you have a good reason and know the consequences.
1861 *
1862 * If POLARSSL_CONFIG_OPTIONS is undefined here the options in the module
1863 * header file take precedence.
1864 *
1865 * Please check the respective header file for documentation on these
1866 * parameters (to prevent duplicate documentation).
1867 *
1868 * Uncomment POLARSSL_CONFIG_OPTIONS to enable using the values defined here.
1869 * \{
1870 */
1871//#define POLARSSL_CONFIG_OPTIONS /**< Enable config.h module value configuration */
1872
1873#if defined(POLARSSL_CONFIG_OPTIONS)
1874
1875// MPI / BIGNUM options
1876//
1877#define POLARSSL_MPI_WINDOW_SIZE 6 /**< Maximum windows size used. */
1878#define POLARSSL_MPI_MAX_SIZE 512 /**< Maximum number of bytes for usable MPIs. */
1879
1880// CTR_DRBG options
1881//
Paul Bakkerfb08fd22013-08-27 15:06:26 +02001882#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 +02001883#define CTR_DRBG_RESEED_INTERVAL 10000 /**< Interval before reseed is performed by default */
1884#define CTR_DRBG_MAX_INPUT 256 /**< Maximum number of additional input bytes */
1885#define CTR_DRBG_MAX_REQUEST 1024 /**< Maximum number of requested bytes per call */
1886#define CTR_DRBG_MAX_SEED_INPUT 384 /**< Maximum size of (re)seed buffer */
1887
Paul Bakkere1b665e2013-12-11 16:02:58 +01001888// ECP options
1889//
1890#define POLARSSL_ECP_MAX_BITS 521 /**< Maximum bit size of groups */
1891#define POLARSSL_ECP_WINDOW_SIZE 6 /**< Maximum window size used */
Manuel Pégourié-Gonnard9e4191c2013-12-30 18:41:16 +01001892#define POLARSSL_ECP_FIXED_POINT_OPTIM 1 /**< Enable fixed-point speed-up */
Paul Bakkere1b665e2013-12-11 16:02:58 +01001893
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_PTHREAD)
2130#if !defined(POLARSSL_THREADING_C) || defined(POLARSSL_THREADING_IMPL)
2131#error "POLARSSL_THREADING_PTHREAD defined, but not all prerequisites"
2132#endif
2133#define POLARSSL_THREADING_IMPL
2134#endif
2135
2136#if defined(POLARSSL_THREADING_ALT)
2137#if !defined(POLARSSL_THREADING_C) || defined(POLARSSL_THREADING_IMPL)
2138#error "POLARSSL_THREADING_ALT defined, but not all prerequisites"
2139#endif
2140#define POLARSSL_THREADING_IMPL
2141#endif
2142
2143#if defined(POLARSSL_THREADING_C) && !defined(POLARSSL_THREADING_IMPL)
2144#error "POLARSSL_THREADING_C defined, single threading implementation required"
2145#endif
2146#undef POLARSSL_THREADING_IMPL
2147
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002148#if defined(POLARSSL_X509_USE_C) && ( !defined(POLARSSL_BIGNUM_C) || \
Paul Bakker7ad00f92013-04-18 23:05:25 +02002149 !defined(POLARSSL_OID_C) || !defined(POLARSSL_ASN1_PARSE_C) || \
Paul Bakker4606c732013-09-15 17:04:23 +02002150 !defined(POLARSSL_PK_PARSE_C) )
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002151#error "POLARSSL_X509_USE_C defined, but not all prerequisites"
Paul Bakker7ad00f92013-04-18 23:05:25 +02002152#endif
2153
Paul Bakker7c6b2c32013-09-16 13:49:26 +02002154#if defined(POLARSSL_X509_CREATE_C) && ( !defined(POLARSSL_BIGNUM_C) || \
2155 !defined(POLARSSL_OID_C) || !defined(POLARSSL_ASN1_WRITE_C) || \
2156 !defined(POLARSSL_PK_WRITE_C) )
2157#error "POLARSSL_X509_CREATE_C defined, but not all prerequisites"
2158#endif
2159
2160#if defined(POLARSSL_X509_CRT_PARSE_C) && ( !defined(POLARSSL_X509_USE_C) )
2161#error "POLARSSL_X509_CRT_PARSE_C defined, but not all prerequisites"
2162#endif
2163
2164#if defined(POLARSSL_X509_CRL_PARSE_C) && ( !defined(POLARSSL_X509_USE_C) )
2165#error "POLARSSL_X509_CRL_PARSE_C defined, but not all prerequisites"
2166#endif
2167
2168#if defined(POLARSSL_X509_CSR_PARSE_C) && ( !defined(POLARSSL_X509_USE_C) )
2169#error "POLARSSL_X509_CSR_PARSE_C defined, but not all prerequisites"
2170#endif
2171
2172#if defined(POLARSSL_X509_CRT_WRITE_C) && ( !defined(POLARSSL_X509_CREATE_C) )
2173#error "POLARSSL_X509_CRT_WRITE_C defined, but not all prerequisites"
2174#endif
2175
2176#if defined(POLARSSL_X509_CSR_WRITE_C) && ( !defined(POLARSSL_X509_CREATE_C) )
2177#error "POLARSSL_X509_CSR_WRITE_C defined, but not all prerequisites"
Paul Bakker7ad00f92013-04-18 23:05:25 +02002178#endif
2179
Paul Bakker5121ce52009-01-03 21:22:43 +00002180#endif /* config.h */