blob: 97fd3ce1d13bf83b3abf1b2f3dcf6843f0dba2fc [file] [log] [blame]
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +02001/**
2 * \file check_config.h
3 *
4 * \brief Consistency checks for configuration options
Darryl Greena40a1012018-01-05 15:33:17 +00005 */
6/*
Bence Szépkúti1e148272020-08-07 13:07:28 +02007 * Copyright The Mbed TLS Contributors
Manuel Pégourié-Gonnard37ff1402015-09-04 14:21:07 +02008 * SPDX-License-Identifier: Apache-2.0
9 *
10 * Licensed under the Apache License, Version 2.0 (the "License"); you may
11 * not use this file except in compliance with the License.
12 * You may obtain a copy of the License at
13 *
14 * http://www.apache.org/licenses/LICENSE-2.0
15 *
16 * Unless required by applicable law or agreed to in writing, software
17 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
18 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 * See the License for the specific language governing permissions and
20 * limitations under the License.
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +020021 */
22
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020023#ifndef MBEDTLS_CHECK_CONFIG_H
24#define MBEDTLS_CHECK_CONFIG_H
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +020025
David Horstmann1b847812022-11-14 15:40:46 +000026/* *INDENT-OFF* */
Manuel Pégourié-Gonnardd14acbc2015-05-29 11:26:37 +020027/*
28 * We assume CHAR_BIT is 8 in many places. In practice, this is true on our
29 * target platforms, so not an issue, but let's just be extra sure.
30 */
31#include <limits.h>
32#if CHAR_BIT != 8
33#error "mbed TLS requires a platform with 8-bit chars"
34#endif
35
Jerry Yu16f68532022-11-05 10:50:06 +080036#include <stdint.h>
37
Manuel Pégourié-Gonnard9db28872015-06-26 10:52:01 +020038#if defined(_WIN32)
39#if !defined(MBEDTLS_PLATFORM_C)
Manuel Pégourié-Gonnard6c0c8e02015-06-22 10:23:34 +020040#error "MBEDTLS_PLATFORM_C is required on Windows"
41#endif
42
Bence Szépkútibb0cfeb2021-05-28 09:42:25 +020043/* Fix the config here. Not convenient to put an #ifdef _WIN32 in mbedtls_config.h as
Gilles Peskine5d46f6a2019-07-27 23:52:53 +020044 * it would confuse config.py. */
Manuel Pégourié-Gonnard9db28872015-06-26 10:52:01 +020045#if !defined(MBEDTLS_PLATFORM_SNPRINTF_ALT) && \
46 !defined(MBEDTLS_PLATFORM_SNPRINTF_MACRO)
47#define MBEDTLS_PLATFORM_SNPRINTF_ALT
48#endif
k-stachowiak6b5ef482019-01-07 16:53:29 +010049
50#if !defined(MBEDTLS_PLATFORM_VSNPRINTF_ALT) && \
51 !defined(MBEDTLS_PLATFORM_VSNPRINTF_MACRO)
52#define MBEDTLS_PLATFORM_VSNPRINTF_ALT
53#endif
Manuel Pégourié-Gonnard9db28872015-06-26 10:52:01 +020054#endif /* _WIN32 */
55
Jaeden Amero197496a2021-06-08 18:31:27 +010056#if defined(TARGET_LIKE_MBED) && defined(MBEDTLS_NET_C)
57#error "The NET module is not available for mbed OS - please use the network functions provided by Mbed OS"
Manuel Pégourié-Gonnard63e7eba2015-07-28 14:17:48 +020058#endif
59
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020060#if defined(MBEDTLS_DEPRECATED_WARNING) && \
Manuel Pégourié-Gonnard757ca002015-03-23 15:24:07 +010061 !defined(__GNUC__) && !defined(__clang__)
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020062#error "MBEDTLS_DEPRECATED_WARNING only works with GCC and Clang"
Manuel Pégourié-Gonnardc70581c2015-03-23 13:58:27 +010063#endif
64
Manuel Pégourié-Gonnard60c793b2015-06-18 20:52:58 +020065#if defined(MBEDTLS_HAVE_TIME_DATE) && !defined(MBEDTLS_HAVE_TIME)
66#error "MBEDTLS_HAVE_TIME_DATE without MBEDTLS_HAVE_TIME does not make sense"
67#endif
68
Tom Cosgrove94e84122023-03-09 17:17:42 +000069#if defined(__aarch64__) && defined(__GNUC__)
70/* We don't do anything with MBEDTLS_AESCE_C on systems without ^ these two */
Jerry Yu2fddfd72023-01-10 16:32:03 +080071#if defined(MBEDTLS_AESCE_C) && !defined(MBEDTLS_HAVE_ASM)
72#error "MBEDTLS_AESCE_C defined, but not all prerequisites"
73#endif
Tom Cosgrove94e84122023-03-09 17:17:42 +000074#endif
Jerry Yu2fddfd72023-01-10 16:32:03 +080075
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020076#if defined(MBEDTLS_CTR_DRBG_C) && !defined(MBEDTLS_AES_C)
77#error "MBEDTLS_CTR_DRBG_C defined, but not all prerequisites"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +020078#endif
79
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020080#if defined(MBEDTLS_DHM_C) && !defined(MBEDTLS_BIGNUM_C)
81#error "MBEDTLS_DHM_C defined, but not all prerequisites"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +020082#endif
83
Brian Murray53e23b62016-09-13 14:00:15 -070084#if defined(MBEDTLS_CMAC_C) && \
Przemek Stekielea805b42022-05-02 10:30:03 +020085 ( !defined(MBEDTLS_CIPHER_C ) || ( !defined(MBEDTLS_AES_C) && !defined(MBEDTLS_DES_C) ) )
Brian Murray53e23b62016-09-13 14:00:15 -070086#error "MBEDTLS_CMAC_C defined, but not all prerequisites"
87#endif
88
Ron Eldor466a57f2018-05-03 16:54:28 +030089#if defined(MBEDTLS_NIST_KW_C) && \
90 ( !defined(MBEDTLS_AES_C) || !defined(MBEDTLS_CIPHER_C) )
Przemek Stekiela09f8352022-05-12 09:34:28 +020091#error "MBEDTLS_NIST_KW_C defined, but not all prerequisites"
Ron Eldor466a57f2018-05-03 16:54:28 +030092#endif
93
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020094#if defined(MBEDTLS_ECDH_C) && !defined(MBEDTLS_ECP_C)
95#error "MBEDTLS_ECDH_C defined, but not all prerequisites"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +020096#endif
97
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +020098#if defined(MBEDTLS_ECDSA_C) && \
99 ( !defined(MBEDTLS_ECP_C) || \
Gilles Peskine799e5762018-09-14 17:34:00 +0200100 !( defined(MBEDTLS_ECP_DP_SECP192R1_ENABLED) || \
101 defined(MBEDTLS_ECP_DP_SECP224R1_ENABLED) || \
102 defined(MBEDTLS_ECP_DP_SECP256R1_ENABLED) || \
103 defined(MBEDTLS_ECP_DP_SECP384R1_ENABLED) || \
104 defined(MBEDTLS_ECP_DP_SECP521R1_ENABLED) || \
105 defined(MBEDTLS_ECP_DP_SECP192K1_ENABLED) || \
106 defined(MBEDTLS_ECP_DP_SECP224K1_ENABLED) || \
107 defined(MBEDTLS_ECP_DP_SECP256K1_ENABLED) || \
108 defined(MBEDTLS_ECP_DP_BP256R1_ENABLED) || \
109 defined(MBEDTLS_ECP_DP_BP384R1_ENABLED) || \
110 defined(MBEDTLS_ECP_DP_BP512R1_ENABLED) ) || \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200111 !defined(MBEDTLS_ASN1_PARSE_C) || \
112 !defined(MBEDTLS_ASN1_WRITE_C) )
113#error "MBEDTLS_ECDSA_C defined, but not all prerequisites"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +0200114#endif
115
Manuel Pégourié-Gonnard4d8685b2015-08-05 15:44:42 +0200116#if defined(MBEDTLS_ECJPAKE_C) && \
Neil Armstrongecaba1c2022-08-11 10:47:08 +0200117 ( !defined(MBEDTLS_ECP_C) || \
118 !( defined(MBEDTLS_MD_C) || defined(MBEDTLS_PSA_CRYPTO_C) ) )
Manuel Pégourié-Gonnard4d8685b2015-08-05 15:44:42 +0200119#error "MBEDTLS_ECJPAKE_C defined, but not all prerequisites"
120#endif
121
Ron Eldor5ed8c1e2018-11-05 14:04:26 +0200122#if defined(MBEDTLS_ECP_RESTARTABLE) && \
Manuel Pégourié-Gonnardad27b802022-12-05 12:54:11 +0100123 ( defined(MBEDTLS_ECDH_COMPUTE_SHARED_ALT) || \
Ron Eldor5ed8c1e2018-11-05 14:04:26 +0200124 defined(MBEDTLS_ECDH_GEN_PUBLIC_ALT) || \
125 defined(MBEDTLS_ECDSA_SIGN_ALT) || \
126 defined(MBEDTLS_ECDSA_VERIFY_ALT) || \
127 defined(MBEDTLS_ECDSA_GENKEY_ALT) || \
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500128 defined(MBEDTLS_ECP_INTERNAL_ALT) || \
Ron Eldor5ed8c1e2018-11-05 14:04:26 +0200129 defined(MBEDTLS_ECP_ALT) )
Manuel Pégourié-Gonnardad27b802022-12-05 12:54:11 +0100130#error "MBEDTLS_ECP_RESTARTABLE defined, but it cannot coexist with an alternative ECP implementation"
Ron Eldor5ed8c1e2018-11-05 14:04:26 +0200131#endif
132
Manuel Pégourié-Gonnardad45c4d2022-12-06 13:20:06 +0100133#if defined(MBEDTLS_ECP_RESTARTABLE) && \
134 !defined(MBEDTLS_ECP_C)
135#error "MBEDTLS_ECP_RESTARTABLE defined, but not all prerequisites"
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200136#endif
137
138#if defined(MBEDTLS_ECDSA_DETERMINISTIC) && !defined(MBEDTLS_HMAC_DRBG_C)
139#error "MBEDTLS_ECDSA_DETERMINISTIC defined, but not all prerequisites"
140#endif
141
k-stachowiak5dbe7ca2019-05-31 20:13:58 +0200142#if defined(MBEDTLS_ECP_C) && ( !defined(MBEDTLS_BIGNUM_C) || ( \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200143 !defined(MBEDTLS_ECP_DP_SECP192R1_ENABLED) && \
144 !defined(MBEDTLS_ECP_DP_SECP224R1_ENABLED) && \
145 !defined(MBEDTLS_ECP_DP_SECP256R1_ENABLED) && \
146 !defined(MBEDTLS_ECP_DP_SECP384R1_ENABLED) && \
147 !defined(MBEDTLS_ECP_DP_SECP521R1_ENABLED) && \
148 !defined(MBEDTLS_ECP_DP_BP256R1_ENABLED) && \
149 !defined(MBEDTLS_ECP_DP_BP384R1_ENABLED) && \
150 !defined(MBEDTLS_ECP_DP_BP512R1_ENABLED) && \
151 !defined(MBEDTLS_ECP_DP_SECP192K1_ENABLED) && \
152 !defined(MBEDTLS_ECP_DP_SECP224K1_ENABLED) && \
k-stachowiak5dbe7ca2019-05-31 20:13:58 +0200153 !defined(MBEDTLS_ECP_DP_SECP256K1_ENABLED) && \
154 !defined(MBEDTLS_ECP_DP_CURVE25519_ENABLED) && \
155 !defined(MBEDTLS_ECP_DP_CURVE448_ENABLED) ) )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200156#error "MBEDTLS_ECP_C defined, but not all prerequisites"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +0200157#endif
158
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500159#if defined(MBEDTLS_PK_PARSE_C) && !defined(MBEDTLS_ASN1_PARSE_C)
Shaun Case8b0ecbc2021-12-20 21:14:10 -0800160#error "MBEDTLS_PK_PARSE_C defined, but not all prerequisites"
Andrzej Kurekc470b6b2019-01-31 08:20:20 -0500161#endif
162
Przemek Stekielea805b42022-05-02 10:30:03 +0200163#if defined(MBEDTLS_PKCS12_C) && !defined(MBEDTLS_CIPHER_C)
bootstrap-prime6dbbf442022-05-17 19:30:44 -0400164#error "MBEDTLS_PKCS12_C defined, but not all prerequisites"
Przemek Stekielea805b42022-05-02 10:30:03 +0200165#endif
166
Andrzej Kurek345a92b2022-08-31 15:00:31 -0400167#if defined(MBEDTLS_PKCS5_C) && \
Manuel Pégourié-Gonnard49e67f82023-03-16 11:39:20 +0100168 !defined(MBEDTLS_CIPHER_C)
bootstrap-prime6dbbf442022-05-17 19:30:44 -0400169#error "MBEDTLS_PKCS5_C defined, but not all prerequisites"
Sebastian Bøe24e88012022-01-19 12:04:35 +0100170#endif
171
Manuel Pégourié-Gonnardbb21c5a2023-03-21 23:53:57 +0100172/* Helpers for hash dependencies, will be undefined at the end of the file */
173/* Do SHA-256, 384, 512 to cover Entropy and TLS. */
174#if defined(MBEDTLS_SHA256_C) || \
175 (defined(MBEDTLS_PSA_CRYPTO_C) && defined(PSA_WANT_ALG_SHA_256))
176#define MBEDTLS_MD_HAVE_SHA256
177#endif
178#if defined(MBEDTLS_SHA384_C) || \
179 (defined(MBEDTLS_PSA_CRYPTO_C) && defined(PSA_WANT_ALG_SHA_384))
180#define MBEDTLS_MD_HAVE_SHA384
181#endif
182#if defined(MBEDTLS_SHA512_C) || \
183 (defined(MBEDTLS_PSA_CRYPTO_C) && defined(PSA_WANT_ALG_SHA_512))
184#define MBEDTLS_MD_HAVE_SHA512
185#endif
186
Manuel Pégourié-Gonnard5cd4b642023-02-02 13:14:59 +0100187#if defined(MBEDTLS_ENTROPY_C) && \
Manuel Pégourié-Gonnardbb21c5a2023-03-21 23:53:57 +0100188 !(defined(MBEDTLS_MD_HAVE_SHA512) || defined(MBEDTLS_MD_HAVE_SHA256))
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200189#error "MBEDTLS_ENTROPY_C defined, but not all prerequisites"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +0200190#endif
Manuel Pégourié-Gonnard5cd4b642023-02-02 13:14:59 +0100191#if defined(MBEDTLS_ENTROPY_C) && \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200192 defined(MBEDTLS_CTR_DRBG_ENTROPY_LEN) && (MBEDTLS_CTR_DRBG_ENTROPY_LEN > 64)
193#error "MBEDTLS_CTR_DRBG_ENTROPY_LEN value too high"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +0200194#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200195#if defined(MBEDTLS_ENTROPY_C) && \
Manuel Pégourié-Gonnardbb21c5a2023-03-21 23:53:57 +0100196 (defined(MBEDTLS_ENTROPY_FORCE_SHA256) || !defined(MBEDTLS_MD_HAVE_SHA512)) \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200197 && defined(MBEDTLS_CTR_DRBG_ENTROPY_LEN) && (MBEDTLS_CTR_DRBG_ENTROPY_LEN > 32)
198#error "MBEDTLS_CTR_DRBG_ENTROPY_LEN value too high"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +0200199#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200200#if defined(MBEDTLS_ENTROPY_C) && \
Manuel Pégourié-Gonnardbb21c5a2023-03-21 23:53:57 +0100201 defined(MBEDTLS_ENTROPY_FORCE_SHA256) && !defined(MBEDTLS_MD_HAVE_SHA256)
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200202#error "MBEDTLS_ENTROPY_FORCE_SHA256 defined, but not all prerequisites"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +0200203#endif
204
Manuel Pégourié-Gonnard6240def2020-07-10 09:35:54 +0200205#if defined(__has_feature)
206#if __has_feature(memory_sanitizer)
207#define MBEDTLS_HAS_MEMSAN
208#endif
209#endif
210#if defined(MBEDTLS_TEST_CONSTANT_FLOW_MEMSAN) && !defined(MBEDTLS_HAS_MEMSAN)
211#error "MBEDTLS_TEST_CONSTANT_FLOW_MEMSAN requires building with MemorySanitizer"
212#endif
213#undef MBEDTLS_HAS_MEMSAN
214
Gilles Peskine19848002021-09-02 10:33:57 +0200215#if defined(MBEDTLS_CCM_C) && ( \
Gilles Peskine104f6de2021-09-09 20:39:47 +0200216 !defined(MBEDTLS_AES_C) && !defined(MBEDTLS_CAMELLIA_C) && !defined(MBEDTLS_ARIA_C) )
Gilles Peskine19848002021-09-02 10:33:57 +0200217#error "MBEDTLS_CCM_C defined, but not all prerequisites"
218#endif
219
220#if defined(MBEDTLS_CCM_C) && !defined(MBEDTLS_CIPHER_C)
Przemek Stekiela09f8352022-05-12 09:34:28 +0200221#error "MBEDTLS_CCM_C defined, but not all prerequisites"
Gilles Peskine19848002021-09-02 10:33:57 +0200222#endif
223
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200224#if defined(MBEDTLS_GCM_C) && ( \
Gilles Peskine104f6de2021-09-09 20:39:47 +0200225 !defined(MBEDTLS_AES_C) && !defined(MBEDTLS_CAMELLIA_C) && !defined(MBEDTLS_ARIA_C) )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200226#error "MBEDTLS_GCM_C defined, but not all prerequisites"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +0200227#endif
228
Gilles Peskine19848002021-09-02 10:33:57 +0200229#if defined(MBEDTLS_GCM_C) && !defined(MBEDTLS_CIPHER_C)
Przemek Stekiela09f8352022-05-12 09:34:28 +0200230#error "MBEDTLS_GCM_C defined, but not all prerequisites"
Gilles Peskine19848002021-09-02 10:33:57 +0200231#endif
232
233#if defined(MBEDTLS_CHACHAPOLY_C) && !defined(MBEDTLS_CHACHA20_C)
234#error "MBEDTLS_CHACHAPOLY_C defined, but not all prerequisites"
235#endif
236
237#if defined(MBEDTLS_CHACHAPOLY_C) && !defined(MBEDTLS_POLY1305_C)
238#error "MBEDTLS_CHACHAPOLY_C defined, but not all prerequisites"
239#endif
240
Janos Follathc44ab972016-11-18 16:38:23 +0000241#if defined(MBEDTLS_ECP_RANDOMIZE_JAC_ALT) && !defined(MBEDTLS_ECP_INTERNAL_ALT)
Janos Follathb0697532016-08-18 12:38:46 +0100242#error "MBEDTLS_ECP_RANDOMIZE_JAC_ALT defined, but not all prerequisites"
243#endif
244
Janos Follathc44ab972016-11-18 16:38:23 +0000245#if defined(MBEDTLS_ECP_ADD_MIXED_ALT) && !defined(MBEDTLS_ECP_INTERNAL_ALT)
Janos Follathb0697532016-08-18 12:38:46 +0100246#error "MBEDTLS_ECP_ADD_MIXED_ALT defined, but not all prerequisites"
247#endif
248
Janos Follathc44ab972016-11-18 16:38:23 +0000249#if defined(MBEDTLS_ECP_DOUBLE_JAC_ALT) && !defined(MBEDTLS_ECP_INTERNAL_ALT)
Janos Follathb0697532016-08-18 12:38:46 +0100250#error "MBEDTLS_ECP_DOUBLE_JAC_ALT defined, but not all prerequisites"
251#endif
252
Janos Follathc44ab972016-11-18 16:38:23 +0000253#if defined(MBEDTLS_ECP_NORMALIZE_JAC_MANY_ALT) && !defined(MBEDTLS_ECP_INTERNAL_ALT)
Janos Follathb0697532016-08-18 12:38:46 +0100254#error "MBEDTLS_ECP_NORMALIZE_JAC_MANY_ALT defined, but not all prerequisites"
255#endif
256
Janos Follathc44ab972016-11-18 16:38:23 +0000257#if defined(MBEDTLS_ECP_NORMALIZE_JAC_ALT) && !defined(MBEDTLS_ECP_INTERNAL_ALT)
Janos Follathb0697532016-08-18 12:38:46 +0100258#error "MBEDTLS_ECP_NORMALIZE_JAC_ALT defined, but not all prerequisites"
259#endif
260
Janos Follathc44ab972016-11-18 16:38:23 +0000261#if defined(MBEDTLS_ECP_DOUBLE_ADD_MXZ_ALT) && !defined(MBEDTLS_ECP_INTERNAL_ALT)
Janos Follathb0697532016-08-18 12:38:46 +0100262#error "MBEDTLS_ECP_DOUBLE_ADD_MXZ_ALT defined, but not all prerequisites"
263#endif
264
Janos Follathc44ab972016-11-18 16:38:23 +0000265#if defined(MBEDTLS_ECP_RANDOMIZE_MXZ_ALT) && !defined(MBEDTLS_ECP_INTERNAL_ALT)
Janos Follathb0697532016-08-18 12:38:46 +0100266#error "MBEDTLS_ECP_RANDOMIZE_MXZ_ALT defined, but not all prerequisites"
267#endif
268
Janos Follathc44ab972016-11-18 16:38:23 +0000269#if defined(MBEDTLS_ECP_NORMALIZE_MXZ_ALT) && !defined(MBEDTLS_ECP_INTERNAL_ALT)
Janos Follathb0697532016-08-18 12:38:46 +0100270#error "MBEDTLS_ECP_NORMALIZE_MXZ_ALT defined, but not all prerequisites"
271#endif
272
Steven Cooremanb5873132021-01-21 13:59:17 +0100273#if defined(MBEDTLS_ECP_NO_FALLBACK) && !defined(MBEDTLS_ECP_INTERNAL_ALT)
274#error "MBEDTLS_ECP_NO_FALLBACK defined, but no alternative implementation enabled"
275#endif
276
Thomas Fossati656864b2016-07-17 08:51:22 +0100277#if defined(MBEDTLS_HKDF_C) && !defined(MBEDTLS_MD_C)
278#error "MBEDTLS_HKDF_C defined, but not all prerequisites"
279#endif
280
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200281#if defined(MBEDTLS_HMAC_DRBG_C) && !defined(MBEDTLS_MD_C)
282#error "MBEDTLS_HMAC_DRBG_C defined, but not all prerequisites"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +0200283#endif
284
Manuel Pégourié-Gonnard45bcb6a2023-03-10 11:40:48 +0100285/* Helper for ECDSA dependencies, will be undefined at the end of the file */
286#if defined(MBEDTLS_USE_PSA_CRYPTO)
287#if defined(PSA_HAVE_FULL_ECDSA)
288#define MBEDTLS_PK_HAVE_ECDSA
289#endif
290#else /* MBEDTLS_USE_PSA_CRYPTO */
291#if defined(MBEDTLS_ECDSA_C)
292#define MBEDTLS_PK_HAVE_ECDSA
293#endif
294#endif /* MBEDTLS_USE_PSA_CRYPTO */
295
Valerio Setti82b484e2023-03-16 08:21:44 +0100296/* Helper for JPAKE dependencies, will be undefined at the end of the file */
297#if defined(MBEDTLS_USE_PSA_CRYPTO)
298#if defined(PSA_HAVE_FULL_JPAKE)
299#define MBEDTLS_PK_HAVE_JPAKE
300#endif
301#else /* MBEDTLS_USE_PSA_CRYPTO */
302#if defined(MBEDTLS_ECJPAKE_C)
303#define MBEDTLS_PK_HAVE_JPAKE
304#endif
305#endif /* MBEDTLS_USE_PSA_CRYPTO */
306
Valerio Setti5d1f29e2023-03-15 14:09:28 +0100307/* Helper for ECDH dependencies, will be undefined at the end of the file */
308#if defined(MBEDTLS_USE_PSA_CRYPTO)
309#if defined(PSA_HAVE_FULL_ECDH)
310#define MBEDTLS_PK_HAVE_ECDH
311#endif
312#else /* MBEDTLS_USE_PSA_CRYPTO */
313#if defined(MBEDTLS_ECDH_C)
314#define MBEDTLS_PK_HAVE_ECDH
315#endif
316#endif /* MBEDTLS_USE_PSA_CRYPTO */
317
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200318#if defined(MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED) && \
Valerio Setti5d1f29e2023-03-15 14:09:28 +0100319 ( !defined(MBEDTLS_PK_HAVE_ECDH) || \
Manuel Pégourié-Gonnard45bcb6a2023-03-10 11:40:48 +0100320 !defined(MBEDTLS_PK_HAVE_ECDSA) || \
Gilles Peskine7ab66a62018-09-14 17:47:41 +0200321 !defined(MBEDTLS_X509_CRT_PARSE_C) )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200322#error "MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED defined, but not all prerequisites"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +0200323#endif
324
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200325#if defined(MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED) && \
Valerio Setti5d1f29e2023-03-15 14:09:28 +0100326 ( !defined(MBEDTLS_PK_HAVE_ECDH) || !defined(MBEDTLS_RSA_C) || \
Gilles Peskine7ab66a62018-09-14 17:47:41 +0200327 !defined(MBEDTLS_X509_CRT_PARSE_C) )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200328#error "MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED defined, but not all prerequisites"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +0200329#endif
330
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200331#if defined(MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED) && !defined(MBEDTLS_DHM_C)
332#error "MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED defined, but not all prerequisites"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +0200333#endif
334
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200335#if defined(MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED) && \
Valerio Settid3f0b9e2023-03-15 17:11:34 +0100336 !defined(MBEDTLS_PK_HAVE_ECDH)
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200337#error "MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED defined, but not all prerequisites"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +0200338#endif
339
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200340#if defined(MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED) && \
341 ( !defined(MBEDTLS_DHM_C) || !defined(MBEDTLS_RSA_C) || \
342 !defined(MBEDTLS_X509_CRT_PARSE_C) || !defined(MBEDTLS_PKCS1_V15) )
343#error "MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED defined, but not all prerequisites"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +0200344#endif
345
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200346#if defined(MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED) && \
Valerio Settid3f0b9e2023-03-15 17:11:34 +0100347 ( !defined(MBEDTLS_PK_HAVE_ECDH) || !defined(MBEDTLS_RSA_C) || \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200348 !defined(MBEDTLS_X509_CRT_PARSE_C) || !defined(MBEDTLS_PKCS1_V15) )
349#error "MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED defined, but not all prerequisites"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +0200350#endif
351
Manuel Pégourié-Gonnard45bcb6a2023-03-10 11:40:48 +0100352#if defined(MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED) && \
Valerio Settid3f0b9e2023-03-15 17:11:34 +0100353 ( !defined(MBEDTLS_PK_HAVE_ECDH) || \
Manuel Pégourié-Gonnard45bcb6a2023-03-10 11:40:48 +0100354 !defined(MBEDTLS_PK_HAVE_ECDSA) || \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200355 !defined(MBEDTLS_X509_CRT_PARSE_C) )
356#error "MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED defined, but not all prerequisites"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +0200357#endif
358
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200359#if defined(MBEDTLS_KEY_EXCHANGE_RSA_PSK_ENABLED) && \
360 ( !defined(MBEDTLS_RSA_C) || !defined(MBEDTLS_X509_CRT_PARSE_C) || \
361 !defined(MBEDTLS_PKCS1_V15) )
362#error "MBEDTLS_KEY_EXCHANGE_RSA_PSK_ENABLED defined, but not all prerequisites"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +0200363#endif
364
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200365#if defined(MBEDTLS_KEY_EXCHANGE_RSA_ENABLED) && \
366 ( !defined(MBEDTLS_RSA_C) || !defined(MBEDTLS_X509_CRT_PARSE_C) || \
367 !defined(MBEDTLS_PKCS1_V15) )
368#error "MBEDTLS_KEY_EXCHANGE_RSA_ENABLED defined, but not all prerequisites"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +0200369#endif
370
Manuel Pégourié-Gonnard557535d2015-09-15 17:53:32 +0200371#if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED) && \
Valerio Setti82b484e2023-03-16 08:21:44 +0100372 ( !defined(MBEDTLS_PK_HAVE_JPAKE) || \
Valerio Setti1a6d96f2023-03-24 14:10:24 +0100373 !(defined(MBEDTLS_ECP_DP_SECP256R1_ENABLED) || \
374 defined(PSA_WANT_ECC_SECP_R1_256) ) )
Manuel Pégourié-Gonnard557535d2015-09-15 17:53:32 +0200375#error "MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED defined, but not all prerequisites"
376#endif
377
Manuel Pégourié-Gonnard41bc8b62023-03-14 23:59:24 +0100378/* Use of EC J-PAKE in TLS requires SHA-256. */
Manuel Pégourié-Gonnard3c16abe2022-09-19 10:44:42 +0200379#if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED) && \
Manuel Pégourié-Gonnardbb21c5a2023-03-21 23:53:57 +0100380 !defined(MBEDTLS_MD_HAVE_SHA256)
Manuel Pégourié-Gonnard3c16abe2022-09-19 10:44:42 +0200381#error "MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED defined, but not all prerequisites"
382#endif
383
Gilles Peskineeccd8882020-03-10 12:19:08 +0100384#if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED) && \
Hanno Beckerfe4ef0c2019-02-26 11:43:09 +0000385 !defined(MBEDTLS_SSL_KEEP_PEER_CERTIFICATE) && \
386 ( !defined(MBEDTLS_SHA256_C) && \
387 !defined(MBEDTLS_SHA512_C) && \
388 !defined(MBEDTLS_SHA1_C) )
389#error "!MBEDTLS_SSL_KEEP_PEER_CERTIFICATE requires MBEDTLS_SHA512_C, MBEDTLS_SHA256_C or MBEDTLS_SHA1_C"
390#endif
391
Manuel Pégourié-Gonnard1f7f7172022-07-18 12:04:05 +0200392#if defined(MBEDTLS_MD_C) && !( \
393 defined(MBEDTLS_MD5_C) || \
394 defined(MBEDTLS_RIPEMD160_C) || \
395 defined(MBEDTLS_SHA1_C) || \
396 defined(MBEDTLS_SHA224_C) || \
397 defined(MBEDTLS_SHA256_C) || \
398 defined(MBEDTLS_SHA384_C) || \
Manuel Pégourié-Gonnard534d64d2023-03-14 17:43:06 +0100399 defined(MBEDTLS_SHA512_C) || \
400 (defined(MBEDTLS_PSA_CRYPTO_C) && \
401 (defined(PSA_WANT_ALG_MD5) || \
402 defined(PSA_WANT_ALG_RIPEMD160) || \
403 defined(PSA_WANT_ALG_SHA_1) || \
404 defined(PSA_WANT_ALG_SHA_224) || \
405 defined(PSA_WANT_ALG_SHA_256) || \
406 defined(PSA_WANT_ALG_SHA_384) || \
407 defined(PSA_WANT_ALG_SHA_512))))
Manuel Pégourié-Gonnard1f7f7172022-07-18 12:04:05 +0200408#error "MBEDTLS_MD_C defined, but not all prerequisites"
409#endif
410
Raef Coles8ff6df52021-07-21 12:42:15 +0100411#if defined(MBEDTLS_LMS_C) && \
Raef Coles07b70d92022-10-13 10:46:16 +0100412 ! ( defined(MBEDTLS_PSA_CRYPTO_C) && defined(PSA_WANT_ALG_SHA_256) )
413#error "MBEDTLS_LMS_C requires MBEDTLS_PSA_CRYPTO_C and PSA_WANT_ALG_SHA_256"
Raef Coles8ff6df52021-07-21 12:42:15 +0100414#endif
415
Raef Colesab4f8742022-09-01 12:24:31 +0100416#if defined(MBEDTLS_LMS_PRIVATE) && \
417 ( !defined(MBEDTLS_LMS_C) )
418#error "MBEDTLS_LMS_PRIVATE requires MBEDTLS_LMS_C"
419#endif
420
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200421#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C) && \
422 ( !defined(MBEDTLS_PLATFORM_C) || !defined(MBEDTLS_PLATFORM_MEMORY) )
423#error "MBEDTLS_MEMORY_BUFFER_ALLOC_C defined, but not all prerequisites"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +0200424#endif
425
Hanno Beckeraf46c5f2019-02-26 13:50:21 +0000426#if defined(MBEDTLS_MEMORY_BACKTRACE) && !defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
Shaun Case8b0ecbc2021-12-20 21:14:10 -0800427#error "MBEDTLS_MEMORY_BACKTRACE defined, but not all prerequisites"
Hanno Beckeraf46c5f2019-02-26 13:50:21 +0000428#endif
429
Hanno Beckerbfaa7182019-06-03 16:31:32 +0100430#if defined(MBEDTLS_MEMORY_DEBUG) && !defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
Shaun Case8b0ecbc2021-12-20 21:14:10 -0800431#error "MBEDTLS_MEMORY_DEBUG defined, but not all prerequisites"
Hanno Beckerbfaa7182019-06-03 16:31:32 +0100432#endif
433
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200434#if defined(MBEDTLS_PADLOCK_C) && !defined(MBEDTLS_HAVE_ASM)
435#error "MBEDTLS_PADLOCK_C defined, but not all prerequisites"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +0200436#endif
437
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200438#if defined(MBEDTLS_PEM_PARSE_C) && !defined(MBEDTLS_BASE64_C)
439#error "MBEDTLS_PEM_PARSE_C defined, but not all prerequisites"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +0200440#endif
441
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200442#if defined(MBEDTLS_PEM_WRITE_C) && !defined(MBEDTLS_BASE64_C)
443#error "MBEDTLS_PEM_WRITE_C defined, but not all prerequisites"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +0200444#endif
445
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200446#if defined(MBEDTLS_PK_C) && \
Manuel Pégourié-Gonnardb86279f2022-07-05 12:11:05 +0200447 !defined(MBEDTLS_RSA_C) && !defined(MBEDTLS_ECP_C)
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200448#error "MBEDTLS_PK_C defined, but not all prerequisites"
Manuel Pégourié-Gonnard94de3312015-01-28 16:32:36 +0000449#endif
450
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200451#if defined(MBEDTLS_PK_PARSE_C) && !defined(MBEDTLS_PK_C)
452#error "MBEDTLS_PK_PARSE_C defined, but not all prerequisites"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +0200453#endif
454
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200455#if defined(MBEDTLS_PK_WRITE_C) && !defined(MBEDTLS_PK_C)
456#error "MBEDTLS_PK_WRITE_C defined, but not all prerequisites"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +0200457#endif
458
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200459#if defined(MBEDTLS_PLATFORM_EXIT_ALT) && !defined(MBEDTLS_PLATFORM_C)
460#error "MBEDTLS_PLATFORM_EXIT_ALT defined, but not all prerequisites"
Rich Evansc0b6da32015-02-03 10:58:06 +0000461#endif
462
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200463#if defined(MBEDTLS_PLATFORM_EXIT_MACRO) && !defined(MBEDTLS_PLATFORM_C)
464#error "MBEDTLS_PLATFORM_EXIT_MACRO defined, but not all prerequisites"
Rich Evans4cc8a222015-02-03 11:26:31 +0000465#endif
466
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200467#if defined(MBEDTLS_PLATFORM_EXIT_MACRO) &&\
468 ( defined(MBEDTLS_PLATFORM_STD_EXIT) ||\
469 defined(MBEDTLS_PLATFORM_EXIT_ALT) )
470#error "MBEDTLS_PLATFORM_EXIT_MACRO and MBEDTLS_PLATFORM_STD_EXIT/MBEDTLS_PLATFORM_EXIT_ALT cannot be defined simultaneously"
Rich Evans4cc8a222015-02-03 11:26:31 +0000471#endif
472
Gilles Peskine6497b5a2022-06-30 17:01:40 +0200473#if defined(MBEDTLS_PLATFORM_SETBUF_ALT) && !defined(MBEDTLS_PLATFORM_C)
474#error "MBEDTLS_PLATFORM_SETBUF_ALT defined, but not all prerequisites"
475#endif
476
477#if defined(MBEDTLS_PLATFORM_SETBUF_MACRO) && !defined(MBEDTLS_PLATFORM_C)
478#error "MBEDTLS_PLATFORM_SETBUF_MACRO defined, but not all prerequisites"
479#endif
480
481#if defined(MBEDTLS_PLATFORM_SETBUF_MACRO) &&\
482 ( defined(MBEDTLS_PLATFORM_STD_SETBUF) ||\
483 defined(MBEDTLS_PLATFORM_SETBUF_ALT) )
484#error "MBEDTLS_PLATFORM_SETBUF_MACRO and MBEDTLS_PLATFORM_STD_SETBUF/MBEDTLS_PLATFORM_SETBUF_ALT cannot be defined simultaneously"
485#endif
486
Andres Amaya Garcia1e4ec662016-07-20 10:16:25 +0100487#if defined(MBEDTLS_PLATFORM_TIME_ALT) &&\
488 ( !defined(MBEDTLS_PLATFORM_C) ||\
489 !defined(MBEDTLS_HAVE_TIME) )
490#error "MBEDTLS_PLATFORM_TIME_ALT defined, but not all prerequisites"
491#endif
492
493#if defined(MBEDTLS_PLATFORM_TIME_MACRO) &&\
494 ( !defined(MBEDTLS_PLATFORM_C) ||\
495 !defined(MBEDTLS_HAVE_TIME) )
496#error "MBEDTLS_PLATFORM_TIME_MACRO defined, but not all prerequisites"
497#endif
498
499#if defined(MBEDTLS_PLATFORM_TIME_TYPE_MACRO) &&\
500 ( !defined(MBEDTLS_PLATFORM_C) ||\
501 !defined(MBEDTLS_HAVE_TIME) )
502#error "MBEDTLS_PLATFORM_TIME_TYPE_MACRO defined, but not all prerequisites"
503#endif
504
505#if defined(MBEDTLS_PLATFORM_TIME_MACRO) &&\
506 ( defined(MBEDTLS_PLATFORM_STD_TIME) ||\
507 defined(MBEDTLS_PLATFORM_TIME_ALT) )
508#error "MBEDTLS_PLATFORM_TIME_MACRO and MBEDTLS_PLATFORM_STD_TIME/MBEDTLS_PLATFORM_TIME_ALT cannot be defined simultaneously"
509#endif
510
511#if defined(MBEDTLS_PLATFORM_TIME_TYPE_MACRO) &&\
512 ( defined(MBEDTLS_PLATFORM_STD_TIME) ||\
513 defined(MBEDTLS_PLATFORM_TIME_ALT) )
514#error "MBEDTLS_PLATFORM_TIME_TYPE_MACRO and MBEDTLS_PLATFORM_STD_TIME/MBEDTLS_PLATFORM_TIME_ALT cannot be defined simultaneously"
515#endif
516
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200517#if defined(MBEDTLS_PLATFORM_FPRINTF_ALT) && !defined(MBEDTLS_PLATFORM_C)
518#error "MBEDTLS_PLATFORM_FPRINTF_ALT defined, but not all prerequisites"
Rich Evansc0b6da32015-02-03 10:58:06 +0000519#endif
520
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200521#if defined(MBEDTLS_PLATFORM_FPRINTF_MACRO) && !defined(MBEDTLS_PLATFORM_C)
522#error "MBEDTLS_PLATFORM_FPRINTF_MACRO defined, but not all prerequisites"
Rich Evans4cc8a222015-02-03 11:26:31 +0000523#endif
524
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200525#if defined(MBEDTLS_PLATFORM_FPRINTF_MACRO) &&\
526 ( defined(MBEDTLS_PLATFORM_STD_FPRINTF) ||\
527 defined(MBEDTLS_PLATFORM_FPRINTF_ALT) )
528#error "MBEDTLS_PLATFORM_FPRINTF_MACRO and MBEDTLS_PLATFORM_STD_FPRINTF/MBEDTLS_PLATFORM_FPRINTF_ALT cannot be defined simultaneously"
Rich Evans4cc8a222015-02-03 11:26:31 +0000529#endif
530
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200531#if defined(MBEDTLS_PLATFORM_FREE_MACRO) &&\
532 ( !defined(MBEDTLS_PLATFORM_C) || !defined(MBEDTLS_PLATFORM_MEMORY) )
533#error "MBEDTLS_PLATFORM_FREE_MACRO defined, but not all prerequisites"
Rich Evans4cc8a222015-02-03 11:26:31 +0000534#endif
535
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200536#if defined(MBEDTLS_PLATFORM_FREE_MACRO) &&\
537 defined(MBEDTLS_PLATFORM_STD_FREE)
538#error "MBEDTLS_PLATFORM_FREE_MACRO and MBEDTLS_PLATFORM_STD_FREE cannot be defined simultaneously"
Rich Evans4cc8a222015-02-03 11:26:31 +0000539#endif
540
Manuel Pégourié-Gonnarda7f80332015-05-27 20:26:40 +0200541#if defined(MBEDTLS_PLATFORM_FREE_MACRO) && !defined(MBEDTLS_PLATFORM_CALLOC_MACRO)
542#error "MBEDTLS_PLATFORM_CALLOC_MACRO must be defined if MBEDTLS_PLATFORM_FREE_MACRO is"
Rich Evans16f8cd82015-02-06 16:14:34 +0000543#endif
544
Manuel Pégourié-Gonnarda7f80332015-05-27 20:26:40 +0200545#if defined(MBEDTLS_PLATFORM_CALLOC_MACRO) &&\
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200546 ( !defined(MBEDTLS_PLATFORM_C) || !defined(MBEDTLS_PLATFORM_MEMORY) )
Manuel Pégourié-Gonnarda7f80332015-05-27 20:26:40 +0200547#error "MBEDTLS_PLATFORM_CALLOC_MACRO defined, but not all prerequisites"
Rich Evans4cc8a222015-02-03 11:26:31 +0000548#endif
549
Manuel Pégourié-Gonnarda7f80332015-05-27 20:26:40 +0200550#if defined(MBEDTLS_PLATFORM_CALLOC_MACRO) &&\
551 defined(MBEDTLS_PLATFORM_STD_CALLOC)
552#error "MBEDTLS_PLATFORM_CALLOC_MACRO and MBEDTLS_PLATFORM_STD_CALLOC cannot be defined simultaneously"
Rich Evans4cc8a222015-02-03 11:26:31 +0000553#endif
554
Manuel Pégourié-Gonnarda7f80332015-05-27 20:26:40 +0200555#if defined(MBEDTLS_PLATFORM_CALLOC_MACRO) && !defined(MBEDTLS_PLATFORM_FREE_MACRO)
556#error "MBEDTLS_PLATFORM_FREE_MACRO must be defined if MBEDTLS_PLATFORM_CALLOC_MACRO is"
Rich Evans16f8cd82015-02-06 16:14:34 +0000557#endif
558
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200559#if defined(MBEDTLS_PLATFORM_MEMORY) && !defined(MBEDTLS_PLATFORM_C)
560#error "MBEDTLS_PLATFORM_MEMORY defined, but not all prerequisites"
Rich Evansc0b6da32015-02-03 10:58:06 +0000561#endif
562
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200563#if defined(MBEDTLS_PLATFORM_PRINTF_ALT) && !defined(MBEDTLS_PLATFORM_C)
564#error "MBEDTLS_PLATFORM_PRINTF_ALT defined, but not all prerequisites"
Rich Evansc0b6da32015-02-03 10:58:06 +0000565#endif
566
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200567#if defined(MBEDTLS_PLATFORM_PRINTF_MACRO) && !defined(MBEDTLS_PLATFORM_C)
568#error "MBEDTLS_PLATFORM_PRINTF_MACRO defined, but not all prerequisites"
Rich Evans4cc8a222015-02-03 11:26:31 +0000569#endif
570
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200571#if defined(MBEDTLS_PLATFORM_PRINTF_MACRO) &&\
572 ( defined(MBEDTLS_PLATFORM_STD_PRINTF) ||\
573 defined(MBEDTLS_PLATFORM_PRINTF_ALT) )
574#error "MBEDTLS_PLATFORM_PRINTF_MACRO and MBEDTLS_PLATFORM_STD_PRINTF/MBEDTLS_PLATFORM_PRINTF_ALT cannot be defined simultaneously"
Rich Evans4cc8a222015-02-03 11:26:31 +0000575#endif
576
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200577#if defined(MBEDTLS_PLATFORM_SNPRINTF_ALT) && !defined(MBEDTLS_PLATFORM_C)
578#error "MBEDTLS_PLATFORM_SNPRINTF_ALT defined, but not all prerequisites"
Rich Evansc0b6da32015-02-03 10:58:06 +0000579#endif
580
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200581#if defined(MBEDTLS_PLATFORM_SNPRINTF_MACRO) && !defined(MBEDTLS_PLATFORM_C)
582#error "MBEDTLS_PLATFORM_SNPRINTF_MACRO defined, but not all prerequisites"
Rich Evans4cc8a222015-02-03 11:26:31 +0000583#endif
584
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200585#if defined(MBEDTLS_PLATFORM_SNPRINTF_MACRO) &&\
586 ( defined(MBEDTLS_PLATFORM_STD_SNPRINTF) ||\
587 defined(MBEDTLS_PLATFORM_SNPRINTF_ALT) )
588#error "MBEDTLS_PLATFORM_SNPRINTF_MACRO and MBEDTLS_PLATFORM_STD_SNPRINTF/MBEDTLS_PLATFORM_SNPRINTF_ALT cannot be defined simultaneously"
Rich Evans4cc8a222015-02-03 11:26:31 +0000589#endif
590
Gilles Peskineef843f22022-09-18 14:05:23 +0200591#if defined(MBEDTLS_PLATFORM_VSNPRINTF_ALT) && !defined(MBEDTLS_PLATFORM_C)
592#error "MBEDTLS_PLATFORM_VSNPRINTF_ALT defined, but not all prerequisites"
593#endif
594
595#if defined(MBEDTLS_PLATFORM_VSNPRINTF_MACRO) && !defined(MBEDTLS_PLATFORM_C)
596#error "MBEDTLS_PLATFORM_VSNPRINTF_MACRO defined, but not all prerequisites"
597#endif
598
599#if defined(MBEDTLS_PLATFORM_VSNPRINTF_MACRO) &&\
600 ( defined(MBEDTLS_PLATFORM_STD_VSNPRINTF) ||\
601 defined(MBEDTLS_PLATFORM_VSNPRINTF_ALT) )
602#error "MBEDTLS_PLATFORM_VSNPRINTF_MACRO and MBEDTLS_PLATFORM_STD_VSNPRINTF/MBEDTLS_PLATFORM_VSNPRINTF_ALT cannot be defined simultaneously"
603#endif
604
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200605#if defined(MBEDTLS_PLATFORM_STD_MEM_HDR) &&\
606 !defined(MBEDTLS_PLATFORM_NO_STD_FUNCTIONS)
607#error "MBEDTLS_PLATFORM_STD_MEM_HDR defined, but not all prerequisites"
Rich Evansc0b6da32015-02-03 10:58:06 +0000608#endif
609
Manuel Pégourié-Gonnarda7f80332015-05-27 20:26:40 +0200610#if defined(MBEDTLS_PLATFORM_STD_CALLOC) && !defined(MBEDTLS_PLATFORM_MEMORY)
611#error "MBEDTLS_PLATFORM_STD_CALLOC defined, but not all prerequisites"
Rich Evansc0b6da32015-02-03 10:58:06 +0000612#endif
613
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200614#if defined(MBEDTLS_PLATFORM_STD_FREE) && !defined(MBEDTLS_PLATFORM_MEMORY)
615#error "MBEDTLS_PLATFORM_STD_FREE defined, but not all prerequisites"
Rich Evansc0b6da32015-02-03 10:58:06 +0000616#endif
617
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200618#if defined(MBEDTLS_PLATFORM_STD_EXIT) &&\
619 !defined(MBEDTLS_PLATFORM_EXIT_ALT)
620#error "MBEDTLS_PLATFORM_STD_EXIT defined, but not all prerequisites"
Rich Evansc0b6da32015-02-03 10:58:06 +0000621#endif
622
Andres Amaya Garcia1e4ec662016-07-20 10:16:25 +0100623#if defined(MBEDTLS_PLATFORM_STD_TIME) &&\
624 ( !defined(MBEDTLS_PLATFORM_TIME_ALT) ||\
625 !defined(MBEDTLS_HAVE_TIME) )
626#error "MBEDTLS_PLATFORM_STD_TIME defined, but not all prerequisites"
627#endif
628
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200629#if defined(MBEDTLS_PLATFORM_STD_FPRINTF) &&\
630 !defined(MBEDTLS_PLATFORM_FPRINTF_ALT)
631#error "MBEDTLS_PLATFORM_STD_FPRINTF defined, but not all prerequisites"
Rich Evansc0b6da32015-02-03 10:58:06 +0000632#endif
633
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200634#if defined(MBEDTLS_PLATFORM_STD_PRINTF) &&\
635 !defined(MBEDTLS_PLATFORM_PRINTF_ALT)
636#error "MBEDTLS_PLATFORM_STD_PRINTF defined, but not all prerequisites"
Rich Evansc0b6da32015-02-03 10:58:06 +0000637#endif
638
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200639#if defined(MBEDTLS_PLATFORM_STD_SNPRINTF) &&\
640 !defined(MBEDTLS_PLATFORM_SNPRINTF_ALT)
641#error "MBEDTLS_PLATFORM_STD_SNPRINTF defined, but not all prerequisites"
Rich Evansc0b6da32015-02-03 10:58:06 +0000642#endif
643
Paul Bakkercf0a9f92016-06-01 11:25:44 +0100644#if defined(MBEDTLS_ENTROPY_NV_SEED) &&\
645 ( !defined(MBEDTLS_PLATFORM_C) || !defined(MBEDTLS_ENTROPY_C) )
646#error "MBEDTLS_ENTROPY_NV_SEED defined, but not all prerequisites"
647#endif
648
649#if defined(MBEDTLS_PLATFORM_NV_SEED_ALT) &&\
650 !defined(MBEDTLS_ENTROPY_NV_SEED)
651#error "MBEDTLS_PLATFORM_NV_SEED_ALT defined, but not all prerequisites"
652#endif
653
654#if defined(MBEDTLS_PLATFORM_STD_NV_SEED_READ) &&\
655 !defined(MBEDTLS_PLATFORM_NV_SEED_ALT)
656#error "MBEDTLS_PLATFORM_STD_NV_SEED_READ defined, but not all prerequisites"
657#endif
658
659#if defined(MBEDTLS_PLATFORM_STD_NV_SEED_WRITE) &&\
660 !defined(MBEDTLS_PLATFORM_NV_SEED_ALT)
661#error "MBEDTLS_PLATFORM_STD_NV_SEED_WRITE defined, but not all prerequisites"
662#endif
663
664#if defined(MBEDTLS_PLATFORM_NV_SEED_READ_MACRO) &&\
665 ( defined(MBEDTLS_PLATFORM_STD_NV_SEED_READ) ||\
666 defined(MBEDTLS_PLATFORM_NV_SEED_ALT) )
667#error "MBEDTLS_PLATFORM_NV_SEED_READ_MACRO and MBEDTLS_PLATFORM_STD_NV_SEED_READ cannot be defined simultaneously"
668#endif
669
670#if defined(MBEDTLS_PLATFORM_NV_SEED_WRITE_MACRO) &&\
671 ( defined(MBEDTLS_PLATFORM_STD_NV_SEED_WRITE) ||\
672 defined(MBEDTLS_PLATFORM_NV_SEED_ALT) )
673#error "MBEDTLS_PLATFORM_NV_SEED_WRITE_MACRO and MBEDTLS_PLATFORM_STD_NV_SEED_WRITE cannot be defined simultaneously"
674#endif
675
Gilles Peskinef08b3f82020-11-13 17:36:48 +0100676#if defined(MBEDTLS_PSA_CRYPTO_C) && \
Gilles Peskine82e57d12020-11-13 21:31:17 +0100677 !( ( ( defined(MBEDTLS_CTR_DRBG_C) || defined(MBEDTLS_HMAC_DRBG_C) ) && \
Gilles Peskinef08b3f82020-11-13 17:36:48 +0100678 defined(MBEDTLS_ENTROPY_C) ) || \
679 defined(MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG) )
680#error "MBEDTLS_PSA_CRYPTO_C defined, but not all prerequisites (missing RNG)"
Jaeden Amero484ee332018-10-25 17:38:05 +0100681#endif
682
Przemek Stekielea805b42022-05-02 10:30:03 +0200683#if defined(MBEDTLS_PSA_CRYPTO_C) && !defined(MBEDTLS_CIPHER_C )
Przemek Stekiela09f8352022-05-12 09:34:28 +0200684#error "MBEDTLS_PSA_CRYPTO_C defined, but not all prerequisites"
Przemek Stekielea805b42022-05-02 10:30:03 +0200685#endif
686
Andrzej Kurekc6905232019-02-05 05:23:41 -0500687#if defined(MBEDTLS_PSA_CRYPTO_SPM) && !defined(MBEDTLS_PSA_CRYPTO_C)
688#error "MBEDTLS_PSA_CRYPTO_SPM defined, but not all prerequisites"
689#endif
690
Gilles Peskinea8ade162019-06-26 11:24:49 +0200691#if defined(MBEDTLS_PSA_CRYPTO_SE_C) && \
692 ! ( defined(MBEDTLS_PSA_CRYPTO_C) && \
693 defined(MBEDTLS_PSA_CRYPTO_STORAGE_C) )
694#error "MBEDTLS_PSA_CRYPTO_SE_C defined, but not all prerequisites"
695#endif
696
Gilles Peskine98473c42022-06-20 18:46:22 +0200697#if defined(MBEDTLS_PSA_CRYPTO_SE_C)
698#if defined(MBEDTLS_DEPRECATED_REMOVED)
699#error "MBEDTLS_PSA_CRYPTO_SE_C is deprecated and will be removed in a future version of Mbed TLS"
700#elif defined(MBEDTLS_DEPRECATED_WARNING)
701#warning "MBEDTLS_PSA_CRYPTO_SE_C is deprecated and will be removed in a future version of Mbed TLS"
702#endif
703#endif /* MBEDTLS_PSA_CRYPTO_SE_C */
704
Andrzej Kurekc6905232019-02-05 05:23:41 -0500705#if defined(MBEDTLS_PSA_CRYPTO_STORAGE_C) && \
Jaeden Amero57f4d9e2019-03-15 16:14:19 +0000706 ! defined(MBEDTLS_PSA_CRYPTO_C)
Andrzej Kurekc6905232019-02-05 05:23:41 -0500707#error "MBEDTLS_PSA_CRYPTO_STORAGE_C defined, but not all prerequisites"
708#endif
709
Jaeden Amero57f4d9e2019-03-15 16:14:19 +0000710#if defined(MBEDTLS_PSA_INJECT_ENTROPY) && \
711 !( defined(MBEDTLS_PSA_CRYPTO_STORAGE_C) && \
712 defined(MBEDTLS_ENTROPY_NV_SEED) )
713#error "MBEDTLS_PSA_INJECT_ENTROPY defined, but not all prerequisites"
Andrzej Kurekc6905232019-02-05 05:23:41 -0500714#endif
715
Jaeden Amero57f4d9e2019-03-15 16:14:19 +0000716#if defined(MBEDTLS_PSA_INJECT_ENTROPY) && \
717 !defined(MBEDTLS_NO_DEFAULT_ENTROPY_SOURCES)
718#error "MBEDTLS_PSA_INJECT_ENTROPY is not compatible with actual entropy sources"
719#endif
720
Gilles Peskine4fc21fd2020-11-13 18:47:18 +0100721#if defined(MBEDTLS_PSA_INJECT_ENTROPY) && \
Gilles Peskine89ffb282020-11-18 15:23:08 +0100722 defined(MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG)
Gilles Peskine4fc21fd2020-11-13 18:47:18 +0100723#error "MBEDTLS_PSA_INJECT_ENTROPY is not compatible with MBEDTLS_PSA_CRYPTO_EXTERNAL_RNG"
724#endif
725
Jaeden Amero57f4d9e2019-03-15 16:14:19 +0000726#if defined(MBEDTLS_PSA_ITS_FILE_C) && \
727 !defined(MBEDTLS_FS_IO)
728#error "MBEDTLS_PSA_ITS_FILE_C defined, but not all prerequisites"
Andrzej Kurekc6905232019-02-05 05:23:41 -0500729#endif
730
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200731#if defined(MBEDTLS_RSA_C) && ( !defined(MBEDTLS_BIGNUM_C) || \
732 !defined(MBEDTLS_OID_C) )
733#error "MBEDTLS_RSA_C defined, but not all prerequisites"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +0200734#endif
735
Paul Bakker4fde40f2016-05-09 15:13:04 +0100736#if defined(MBEDTLS_RSA_C) && ( !defined(MBEDTLS_PKCS1_V21) && \
Paul Bakker37068a72016-05-09 14:36:33 +0100737 !defined(MBEDTLS_PKCS1_V15) )
738#error "MBEDTLS_RSA_C defined, but none of the PKCS1 versions enabled"
739#endif
740
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200741#if defined(MBEDTLS_X509_RSASSA_PSS_SUPPORT) && \
742 ( !defined(MBEDTLS_RSA_C) || !defined(MBEDTLS_PKCS1_V21) )
743#error "MBEDTLS_X509_RSASSA_PSS_SUPPORT defined, but not all prerequisites"
Manuel Pégourié-Gonnard9df5c962014-01-24 14:37:29 +0100744#endif
745
Tom Cosgrove87fbfb52022-03-15 10:51:52 +0000746#if defined(MBEDTLS_SHA512_USE_A64_CRYPTO_IF_PRESENT) && \
747 defined(MBEDTLS_SHA512_USE_A64_CRYPTO_ONLY)
748#error "Must only define one of MBEDTLS_SHA512_USE_A64_CRYPTO_*"
749#endif
750
751#if defined(MBEDTLS_SHA512_USE_A64_CRYPTO_IF_PRESENT) || \
752 defined(MBEDTLS_SHA512_USE_A64_CRYPTO_ONLY)
753#if !defined(MBEDTLS_SHA512_C)
754#error "MBEDTLS_SHA512_USE_A64_CRYPTO_* defined without MBEDTLS_SHA512_C"
755#endif
756#if defined(MBEDTLS_SHA512_ALT) || defined(MBEDTLS_SHA512_PROCESS_ALT)
757#error "MBEDTLS_SHA512_*ALT can't be used with MBEDTLS_SHA512_USE_A64_CRYPTO_*"
758#endif
Tom Cosgrove87fbfb52022-03-15 10:51:52 +0000759
760#endif /* MBEDTLS_SHA512_USE_A64_CRYPTO_IF_PRESENT || MBEDTLS_SHA512_USE_A64_CRYPTO_ONLY */
761
762#if defined(MBEDTLS_SHA512_USE_A64_CRYPTO_ONLY) && !defined(__aarch64__)
763#error "MBEDTLS_SHA512_USE_A64_CRYPTO_ONLY defined on non-Aarch64 system"
764#endif
765
Tom Cosgrovef3ebd902022-02-20 22:25:31 +0000766#if defined(MBEDTLS_SHA256_USE_A64_CRYPTO_IF_PRESENT) && \
767 defined(MBEDTLS_SHA256_USE_A64_CRYPTO_ONLY)
768#error "Must only define one of MBEDTLS_SHA256_USE_A64_CRYPTO_*"
769#endif
770
771#if defined(MBEDTLS_SHA256_USE_A64_CRYPTO_IF_PRESENT) || \
772 defined(MBEDTLS_SHA256_USE_A64_CRYPTO_ONLY)
773#if !defined(MBEDTLS_SHA256_C)
774#error "MBEDTLS_SHA256_USE_A64_CRYPTO_* defined without MBEDTLS_SHA256_C"
775#endif
776#if defined(MBEDTLS_SHA256_ALT) || defined(MBEDTLS_SHA256_PROCESS_ALT)
777#error "MBEDTLS_SHA256_*ALT can't be used with MBEDTLS_SHA256_USE_A64_CRYPTO_*"
778#endif
Jerry Yu35f2b262023-02-15 11:35:55 +0800779
Tom Cosgrovef3ebd902022-02-20 22:25:31 +0000780#endif
781
Tom Cosgroveb9987fc2022-02-21 12:26:11 +0000782#if defined(MBEDTLS_SHA256_USE_A64_CRYPTO_ONLY) && \
783 !defined(__aarch64__) && !defined(_M_ARM64)
Tom Cosgrovef3ebd902022-02-20 22:25:31 +0000784#error "MBEDTLS_SHA256_USE_A64_CRYPTO_ONLY defined on non-Aarch64 system"
785#endif
786
Manuel Pégourié-Gonnarda31ddb92023-03-22 00:13:50 +0100787/* TLS 1.3 requires separate HKDF parts from PSA,
788 * and at least one ciphersuite, so at least SHA-256 or SHA-384
789 * from PSA to use with HKDF.
790 *
791 * Note: for dependencies common with TLS 1.2 (running handshake hash),
792 * see MBEDTLS_SSL_TLS_C. */
Ronald Cron6f135e12021-12-08 16:57:54 +0100793#if defined(MBEDTLS_SSL_PROTO_TLS1_3) && \
Manuel Pégourié-Gonnarda31ddb92023-03-22 00:13:50 +0100794 !(defined(MBEDTLS_PSA_CRYPTO_C) && \
795 defined(PSA_WANT_ALG_HKDF_EXTRACT) && \
796 defined(PSA_WANT_ALG_HKDF_EXPAND) && \
797 (defined(PSA_WANT_ALG_SHA_256) || defined(PSA_WANT_ALG_SHA_384)))
Ronald Cron6f135e12021-12-08 16:57:54 +0100798#error "MBEDTLS_SSL_PROTO_TLS1_3 defined, but not all prerequisites"
Hanno Becker6055a172020-06-02 06:20:23 +0100799#endif
800
Ronald Crond8d2ea52022-10-04 15:48:06 +0200801#if defined(MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_EPHEMERAL_ENABLED)
Valerio Setti4059aba2023-03-16 15:40:57 +0100802#if !( defined(MBEDTLS_PK_HAVE_ECDH) && defined(MBEDTLS_X509_CRT_PARSE_C) && \
Manuel Pégourié-Gonnard439dbc52023-03-10 12:33:15 +0100803 ( defined(MBEDTLS_PK_HAVE_ECDSA) || defined(MBEDTLS_PKCS1_V21) ) )
Ronald Crond8d2ea52022-10-04 15:48:06 +0200804#error "MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_EPHEMERAL_ENABLED defined, but not all prerequisites"
805#endif
806#endif
807
808#if defined(MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK_EPHEMERAL_ENABLED)
Valerio Setti4059aba2023-03-16 15:40:57 +0100809#if !( defined(MBEDTLS_PK_HAVE_ECDH) )
Ronald Crond8d2ea52022-10-04 15:48:06 +0200810#error "MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK_EPHEMERAL_ENABLED defined, but not all prerequisites"
811#endif
812#endif
813
Tom Cosgroveafb2fe12022-06-29 16:36:12 +0100814/*
815 * The current implementation of TLS 1.3 requires MBEDTLS_SSL_KEEP_PEER_CERTIFICATE.
816 */
817#if defined(MBEDTLS_SSL_PROTO_TLS1_3) && !defined(MBEDTLS_SSL_KEEP_PEER_CERTIFICATE)
818#error "MBEDTLS_SSL_PROTO_TLS1_3 defined without MBEDTLS_SSL_KEEP_PEER_CERTIFICATE"
819#endif
820
TRodziewicz0f82ec62021-05-12 17:49:18 +0200821#if defined(MBEDTLS_SSL_PROTO_TLS1_2) && \
Simon Butcher432e7022019-04-11 18:56:18 +0100822 !(defined(MBEDTLS_KEY_EXCHANGE_RSA_ENABLED) || \
823 defined(MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED) || \
824 defined(MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED) || \
825 defined(MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED) || \
826 defined(MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED) || \
827 defined(MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED) || \
828 defined(MBEDTLS_KEY_EXCHANGE_PSK_ENABLED) || \
829 defined(MBEDTLS_KEY_EXCHANGE_DHE_PSK_ENABLED) || \
830 defined(MBEDTLS_KEY_EXCHANGE_RSA_PSK_ENABLED) || \
831 defined(MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED) || \
832 defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED) )
833#error "One or more versions of the TLS protocol are enabled " \
834 "but no key exchange methods defined with MBEDTLS_KEY_EXCHANGE_xxxx"
835#endif
836
Xiaokang Qian95a07302022-10-25 02:56:00 +0000837#if defined(MBEDTLS_SSL_EARLY_DATA) && \
Xiaokang Qian402bb1e2022-11-10 10:38:17 +0000838 ( !defined(MBEDTLS_SSL_SESSION_TICKETS) || \
839 ( !defined(MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK_ENABLED) && \
840 !defined(MBEDTLS_SSL_TLS1_3_KEY_EXCHANGE_MODE_PSK_EPHEMERAL_ENABLED) ) )
Xiaokang Qian95a07302022-10-25 02:56:00 +0000841#error "MBEDTLS_SSL_EARLY_DATA defined, but not all prerequisites"
842#endif
843
Jerry Yu16f68532022-11-05 10:50:06 +0800844#if defined(MBEDTLS_SSL_EARLY_DATA) && defined(MBEDTLS_SSL_SRV_C) && \
845 ( !defined(MBEDTLS_SSL_MAX_EARLY_DATA_SIZE) || \
Jerry Yu12c46bd2022-12-06 11:02:51 +0800846 ( MBEDTLS_SSL_MAX_EARLY_DATA_SIZE < 0 ) || \
Jerry Yu16f68532022-11-05 10:50:06 +0800847 ( MBEDTLS_SSL_MAX_EARLY_DATA_SIZE > UINT32_MAX ) )
Jerry Yu12c46bd2022-12-06 11:02:51 +0800848#error "MBEDTLS_SSL_MAX_EARLY_DATA_SIZE MUST be defined and in range(0..UINT32_MAX)"
Jerry Yu16f68532022-11-05 10:50:06 +0800849#endif
850
Manuel Pégourié-Gonnard5a8d56d2015-05-13 10:10:00 +0200851#if defined(MBEDTLS_SSL_PROTO_DTLS) && \
Manuel Pégourié-Gonnard5a8d56d2015-05-13 10:10:00 +0200852 !defined(MBEDTLS_SSL_PROTO_TLS1_2)
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200853#error "MBEDTLS_SSL_PROTO_DTLS defined, but not all prerequisites"
Manuel Pégourié-Gonnard0b1ff292014-02-06 13:04:16 +0100854#endif
855
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200856#if defined(MBEDTLS_SSL_CLI_C) && !defined(MBEDTLS_SSL_TLS_C)
857#error "MBEDTLS_SSL_CLI_C defined, but not all prerequisites"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +0200858#endif
859
Valerio Settia4bb0fa2023-01-03 15:36:25 +0100860#if defined(MBEDTLS_SSL_ASYNC_PRIVATE) && !defined(MBEDTLS_X509_CRT_PARSE_C)
861#error "MBEDTLS_SSL_ASYNC_PRIVATE defined, but not all prerequisites"
862#endif
863
Manuel Pégourié-Gonnarda31ddb92023-03-22 00:13:50 +0100864#if defined(MBEDTLS_SSL_TLS_C) && !defined(MBEDTLS_CIPHER_C)
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200865#error "MBEDTLS_SSL_TLS_C defined, but not all prerequisites"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +0200866#endif
867
Manuel Pégourié-Gonnarda31ddb92023-03-22 00:13:50 +0100868/* TLS 1.2 and 1.3 require SHA-256 or SHA-384 (running handshake hash) */
869#if defined(MBEDTLS_SSL_TLS_C)
870#if defined(MBEDTLS_USE_PSA_CRYPTO)
871#if !(defined(PSA_WANT_ALG_SHA_256) || defined(PSA_WANT_ALG_SHA_384))
Manuel Pégourié-Gonnard70a1b6d2023-03-24 10:30:40 +0100872#error "MBEDTLS_SSL_TLS_C defined, but not all prerequisites"
Manuel Pégourié-Gonnarda31ddb92023-03-22 00:13:50 +0100873#endif
874#else /* MBEDTLS_USE_PSA_CRYPTO */
875#if !defined(MBEDTLS_MD_C) || \
876 !(defined(MBEDTLS_MD_HAVE_SHA256) || defined(MBEDTLS_MD_HAVE_SHA384))
Manuel Pégourié-Gonnard70a1b6d2023-03-24 10:30:40 +0100877#error "MBEDTLS_SSL_TLS_C defined, but not all prerequisites"
Manuel Pégourié-Gonnarda31ddb92023-03-22 00:13:50 +0100878#endif
879#endif /* MBEDTLS_USE_PSA_CRYPTO */
880#endif /* MBEDTLS_SSL_TLS_C */
881
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200882#if defined(MBEDTLS_SSL_SRV_C) && !defined(MBEDTLS_SSL_TLS_C)
883#error "MBEDTLS_SSL_SRV_C defined, but not all prerequisites"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +0200884#endif
885
Jerry Yue0a64122021-12-23 11:06:26 +0800886#if defined(MBEDTLS_SSL_TLS_C) && \
887 !( defined(MBEDTLS_SSL_PROTO_TLS1_2) || defined(MBEDTLS_SSL_PROTO_TLS1_3) )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200888#error "MBEDTLS_SSL_TLS_C defined, but no protocols are active"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +0200889#endif
890
Manuel Pégourié-Gonnarde057d3b2015-05-20 10:59:43 +0200891#if defined(MBEDTLS_SSL_DTLS_HELLO_VERIFY) && !defined(MBEDTLS_SSL_PROTO_DTLS)
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200892#error "MBEDTLS_SSL_DTLS_HELLO_VERIFY defined, but not all prerequisites"
Manuel Pégourié-Gonnard82202f02014-07-23 00:28:58 +0200893#endif
894
Manuel Pégourié-Gonnard62c74bb2015-09-08 17:50:29 +0200895#if defined(MBEDTLS_SSL_DTLS_CLIENT_PORT_REUSE) && \
Manuel Pégourié-Gonnardddfe5d22015-09-09 12:46:16 +0200896 !defined(MBEDTLS_SSL_DTLS_HELLO_VERIFY)
Manuel Pégourié-Gonnard62c74bb2015-09-08 17:50:29 +0200897#error "MBEDTLS_SSL_DTLS_CLIENT_PORT_REUSE defined, but not all prerequisites"
898#endif
899
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200900#if defined(MBEDTLS_SSL_DTLS_ANTI_REPLAY) && \
901 ( !defined(MBEDTLS_SSL_TLS_C) || !defined(MBEDTLS_SSL_PROTO_DTLS) )
902#error "MBEDTLS_SSL_DTLS_ANTI_REPLAY defined, but not all prerequisites"
Manuel Pégourié-Gonnard8464a462014-09-24 14:05:32 +0200903#endif
904
Gilles Peskined3d02902020-03-04 21:35:27 +0100905#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID) && \
906 ( !defined(MBEDTLS_SSL_TLS_C) || !defined(MBEDTLS_SSL_PROTO_DTLS) )
907#error "MBEDTLS_SSL_DTLS_CONNECTION_ID defined, but not all prerequisites"
908#endif
909
910#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID) && \
911 defined(MBEDTLS_SSL_CID_IN_LEN_MAX) && \
912 MBEDTLS_SSL_CID_IN_LEN_MAX > 255
913#error "MBEDTLS_SSL_CID_IN_LEN_MAX too large (max 255)"
914#endif
915
916#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID) && \
917 defined(MBEDTLS_SSL_CID_OUT_LEN_MAX) && \
918 MBEDTLS_SSL_CID_OUT_LEN_MAX > 255
919#error "MBEDTLS_SSL_CID_OUT_LEN_MAX too large (max 255)"
920#endif
921
Hannes Tschofenig88e55662022-11-23 10:14:54 +0100922#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID_COMPAT) && \
923 !defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
Tom Cosgrove1797b052022-12-04 17:19:59 +0000924#error "MBEDTLS_SSL_DTLS_CONNECTION_ID_COMPAT defined, but not all prerequisites"
Hannes Tschofenigfd6cca42021-10-12 09:22:33 +0200925#endif
926
Hannes Tschofenigb2e66152022-11-23 10:53:44 +0100927#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID_COMPAT) && MBEDTLS_SSL_DTLS_CONNECTION_ID_COMPAT != 0
928#if defined(MBEDTLS_DEPRECATED_REMOVED)
929#error "MBEDTLS_SSL_DTLS_CONNECTION_ID_COMPAT is deprecated and will be removed in a future version of Mbed TLS"
930#elif defined(MBEDTLS_DEPRECATED_WARNING)
931#warning "MBEDTLS_SSL_DTLS_CONNECTION_ID_COMPAT is deprecated and will be removed in a future version of Mbed TLS"
932#endif
933#endif /* MBEDTLS_SSL_DTLS_CONNECTION_ID_COMPAT && MBEDTLS_SSL_DTLS_CONNECTION_ID_COMPAT != 0 */
Hannes Tschofenigfd6cca42021-10-12 09:22:33 +0200934
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200935#if defined(MBEDTLS_SSL_ENCRYPT_THEN_MAC) && \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200936 !defined(MBEDTLS_SSL_PROTO_TLS1_2)
Shaun Case8b0ecbc2021-12-20 21:14:10 -0800937#error "MBEDTLS_SSL_ENCRYPT_THEN_MAC defined, but not all prerequisites"
Manuel Pégourié-Gonnard699cafa2014-10-27 13:57:03 +0100938#endif
939
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200940#if defined(MBEDTLS_SSL_EXTENDED_MASTER_SECRET) && \
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200941 !defined(MBEDTLS_SSL_PROTO_TLS1_2)
Shaun Case8b0ecbc2021-12-20 21:14:10 -0800942#error "MBEDTLS_SSL_EXTENDED_MASTER_SECRET defined, but not all prerequisites"
Manuel Pégourié-Gonnard769c6b62014-10-28 14:13:55 +0100943#endif
944
Gilles Peskine7d3186d2022-08-12 22:43:18 +0200945#if defined(MBEDTLS_SSL_RENEGOTIATION) && \
946 !defined(MBEDTLS_SSL_PROTO_TLS1_2)
947#error "MBEDTLS_SSL_RENEGOTIATION defined, but not all prerequisites"
948#endif
949
Przemek Stekiela09f8352022-05-12 09:34:28 +0200950#if defined(MBEDTLS_SSL_TICKET_C) && ( !defined(MBEDTLS_CIPHER_C) && \
951 !defined(MBEDTLS_USE_PSA_CRYPTO) )
952#error "MBEDTLS_SSL_TICKET_C defined, but not all prerequisites"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +0200953#endif
954
Przemek Stekiel52a428b2022-10-10 08:47:13 +0200955#if defined(MBEDTLS_SSL_TICKET_C) && \
956 !( defined(MBEDTLS_GCM_C) || defined(MBEDTLS_CCM_C) || defined(MBEDTLS_CHACHAPOLY_C) )
Przemek Stekield61a4d32022-10-11 09:40:40 +0200957#error "MBEDTLS_SSL_TICKET_C defined, but not all prerequisites"
Przemek Stekiel52a428b2022-10-10 08:47:13 +0200958#endif
959
Jerry Yu9750f812022-07-20 11:04:50 +0800960#if defined(MBEDTLS_SSL_TLS1_3_TICKET_NONCE_LENGTH) && \
961 MBEDTLS_SSL_TLS1_3_TICKET_NONCE_LENGTH >= 256
962#error "MBEDTLS_SSL_TLS1_3_TICKET_NONCE_LENGTH must be less than 256"
Jerry Yu08aed4d2022-07-20 10:36:12 +0800963#endif
964
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200965#if defined(MBEDTLS_SSL_SERVER_NAME_INDICATION) && \
966 !defined(MBEDTLS_X509_CRT_PARSE_C)
967#error "MBEDTLS_SSL_SERVER_NAME_INDICATION defined, but not all prerequisites"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +0200968#endif
969
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200970#if defined(MBEDTLS_THREADING_PTHREAD)
971#if !defined(MBEDTLS_THREADING_C) || defined(MBEDTLS_THREADING_IMPL)
972#error "MBEDTLS_THREADING_PTHREAD defined, but not all prerequisites"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +0200973#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200974#define MBEDTLS_THREADING_IMPL
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +0200975#endif
976
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200977#if defined(MBEDTLS_THREADING_ALT)
978#if !defined(MBEDTLS_THREADING_C) || defined(MBEDTLS_THREADING_IMPL)
979#error "MBEDTLS_THREADING_ALT defined, but not all prerequisites"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +0200980#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200981#define MBEDTLS_THREADING_IMPL
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +0200982#endif
983
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200984#if defined(MBEDTLS_THREADING_C) && !defined(MBEDTLS_THREADING_IMPL)
985#error "MBEDTLS_THREADING_C defined, single threading implementation required"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +0200986#endif
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200987#undef MBEDTLS_THREADING_IMPL
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +0200988
Manuel Pégourié-Gonnardaeefa492018-10-22 12:14:52 +0200989#if defined(MBEDTLS_USE_PSA_CRYPTO) && !defined(MBEDTLS_PSA_CRYPTO_C)
990#error "MBEDTLS_USE_PSA_CRYPTO defined, but not all prerequisites"
991#endif
992
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200993#if defined(MBEDTLS_VERSION_FEATURES) && !defined(MBEDTLS_VERSION_C)
994#error "MBEDTLS_VERSION_FEATURES defined, but not all prerequisites"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +0200995#endif
996
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +0200997#if defined(MBEDTLS_X509_USE_C) && ( !defined(MBEDTLS_BIGNUM_C) || \
Przemek Stekiel10836a02022-08-19 08:45:34 +0200998 !defined(MBEDTLS_OID_C) || !defined(MBEDTLS_ASN1_PARSE_C) || \
999 !defined(MBEDTLS_PK_PARSE_C) || \
Przemek Stekiel278b6672022-08-03 09:50:38 +02001000 ( !defined(MBEDTLS_MD_C) && !defined(MBEDTLS_USE_PSA_CRYPTO) ) )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001001#error "MBEDTLS_X509_USE_C defined, but not all prerequisites"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +02001002#endif
1003
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001004#if defined(MBEDTLS_X509_CREATE_C) && ( !defined(MBEDTLS_BIGNUM_C) || \
1005 !defined(MBEDTLS_OID_C) || !defined(MBEDTLS_ASN1_WRITE_C) || \
Przemek Stekiel10836a02022-08-19 08:45:34 +02001006 !defined(MBEDTLS_PK_PARSE_C) || \
Przemek Stekiel278b6672022-08-03 09:50:38 +02001007 ( !defined(MBEDTLS_MD_C) && !defined(MBEDTLS_USE_PSA_CRYPTO) ) )
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001008#error "MBEDTLS_X509_CREATE_C defined, but not all prerequisites"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +02001009#endif
1010
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001011#if defined(MBEDTLS_X509_CRT_PARSE_C) && ( !defined(MBEDTLS_X509_USE_C) )
1012#error "MBEDTLS_X509_CRT_PARSE_C defined, but not all prerequisites"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +02001013#endif
1014
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001015#if defined(MBEDTLS_X509_CRL_PARSE_C) && ( !defined(MBEDTLS_X509_USE_C) )
1016#error "MBEDTLS_X509_CRL_PARSE_C defined, but not all prerequisites"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +02001017#endif
1018
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001019#if defined(MBEDTLS_X509_CSR_PARSE_C) && ( !defined(MBEDTLS_X509_USE_C) )
1020#error "MBEDTLS_X509_CSR_PARSE_C defined, but not all prerequisites"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +02001021#endif
1022
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001023#if defined(MBEDTLS_X509_CRT_WRITE_C) && ( !defined(MBEDTLS_X509_CREATE_C) )
1024#error "MBEDTLS_X509_CRT_WRITE_C defined, but not all prerequisites"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +02001025#endif
1026
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001027#if defined(MBEDTLS_X509_CSR_WRITE_C) && ( !defined(MBEDTLS_X509_CREATE_C) )
1028#error "MBEDTLS_X509_CSR_WRITE_C defined, but not all prerequisites"
Manuel Pégourié-Gonnard14d55952014-04-30 12:35:08 +02001029#endif
1030
Valerio Settia4bb0fa2023-01-03 15:36:25 +01001031#if defined(MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK) && \
Valerio Setti8e45cdd2023-01-05 09:32:29 +01001032 ( !defined(MBEDTLS_X509_CRT_PARSE_C) )
Valerio Settia4bb0fa2023-01-03 15:36:25 +01001033#error "MBEDTLS_X509_TRUSTED_CERTIFICATE_CALLBACK defined, but not all prerequisites"
1034#endif
1035
Andres Amaya Garciad7fce002017-07-20 11:49:32 +01001036#if defined(MBEDTLS_HAVE_INT32) && defined(MBEDTLS_HAVE_INT64)
1037#error "MBEDTLS_HAVE_INT32 and MBEDTLS_HAVE_INT64 cannot be defined simultaneously"
1038#endif /* MBEDTLS_HAVE_INT32 && MBEDTLS_HAVE_INT64 */
1039
Andres Amaya Garcia93db11a2017-07-20 12:11:19 +01001040#if ( defined(MBEDTLS_HAVE_INT32) || defined(MBEDTLS_HAVE_INT64) ) && \
1041 defined(MBEDTLS_HAVE_ASM)
Andres Amaya Garciab39467d2017-07-20 13:21:15 +01001042#error "MBEDTLS_HAVE_INT32/MBEDTLS_HAVE_INT64 and MBEDTLS_HAVE_ASM cannot be defined simultaneously"
Andres Amaya Garciad7fce002017-07-20 11:49:32 +01001043#endif /* (MBEDTLS_HAVE_INT32 || MBEDTLS_HAVE_INT64) && MBEDTLS_HAVE_ASM */
1044
Ron Eldor3adb9922017-12-21 10:15:08 +02001045#if defined(MBEDTLS_SSL_DTLS_SRTP) && ( !defined(MBEDTLS_SSL_PROTO_DTLS) )
1046#error "MBEDTLS_SSL_DTLS_SRTP defined, but not all prerequisites"
1047#endif
1048
Andrzej Kurek557289b2020-10-21 15:12:39 +02001049#if defined(MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH) && ( !defined(MBEDTLS_SSL_MAX_FRAGMENT_LENGTH) )
1050#error "MBEDTLS_SSL_VARIABLE_BUFFER_LENGTH defined, but not all prerequisites"
1051#endif
1052
Jan Bruckner151f6422023-02-10 12:45:19 +01001053#if defined(MBEDTLS_SSL_RECORD_SIZE_LIMIT) && ( !defined(MBEDTLS_SSL_PROTO_TLS1_3) )
1054#error "MBEDTLS_SSL_RECORD_SIZE_LIMIT defined, but not all prerequisites"
1055#endif
1056
Przemek Stekiele31ba832022-09-28 09:44:58 +02001057#if defined(MBEDTLS_SSL_CONTEXT_SERIALIZATION) && !( defined(MBEDTLS_GCM_C) || defined(MBEDTLS_CCM_C) || defined(MBEDTLS_CHACHAPOLY_C) )
Przemek Stekield582a012022-09-28 07:59:01 +02001058#error "MBEDTLS_SSL_CONTEXT_SERIALIZATION defined, but not all prerequisites"
1059#endif
Gilles Peskinefa4e4b82021-04-21 18:45:41 +02001060
1061/* Reject attempts to enable options that have been removed and that could
1062 * cause a build to succeed but with features removed. */
1063
1064#if defined(MBEDTLS_HAVEGE_C) //no-check-names
Dave Rodgman017a1992022-03-31 14:07:01 +01001065#error "MBEDTLS_HAVEGE_C was removed in Mbed TLS 3.0. See https://github.com/Mbed-TLS/mbedtls/issues/2599"
Gilles Peskinefa4e4b82021-04-21 18:45:41 +02001066#endif
1067
1068#if defined(MBEDTLS_SSL_HW_RECORD_ACCEL) //no-check-names
Dave Rodgman017a1992022-03-31 14:07:01 +01001069#error "MBEDTLS_SSL_HW_RECORD_ACCEL was removed in Mbed TLS 3.0. See https://github.com/Mbed-TLS/mbedtls/issues/4031"
Gilles Peskinefa4e4b82021-04-21 18:45:41 +02001070#endif
1071
1072#if defined(MBEDTLS_SSL_PROTO_SSL3) //no-check-names
Dave Rodgman017a1992022-03-31 14:07:01 +01001073#error "MBEDTLS_SSL_PROTO_SSL3 (SSL v3.0 support) was removed in Mbed TLS 3.0. See https://github.com/Mbed-TLS/mbedtls/issues/4031"
Gilles Peskinefa4e4b82021-04-21 18:45:41 +02001074#endif
1075
1076#if defined(MBEDTLS_SSL_SRV_SUPPORT_SSLV2_CLIENT_HELLO) //no-check-names
Dave Rodgman017a1992022-03-31 14:07:01 +01001077#error "MBEDTLS_SSL_SRV_SUPPORT_SSLV2_CLIENT_HELLO (SSL v2 ClientHello support) was removed in Mbed TLS 3.0. See https://github.com/Mbed-TLS/mbedtls/issues/4031"
Gilles Peskinefa4e4b82021-04-21 18:45:41 +02001078#endif
1079
1080#if defined(MBEDTLS_SSL_TRUNCATED_HMAC_COMPAT) //no-check-names
Dave Rodgman017a1992022-03-31 14:07:01 +01001081#error "MBEDTLS_SSL_TRUNCATED_HMAC_COMPAT (compatibility with the buggy implementation of truncated HMAC in Mbed TLS up to 2.7) was removed in Mbed TLS 3.0. See https://github.com/Mbed-TLS/mbedtls/issues/4031"
Gilles Peskinefa4e4b82021-04-21 18:45:41 +02001082#endif
1083
1084#if defined(MBEDTLS_TLS_DEFAULT_ALLOW_SHA1_IN_CERTIFICATES) //no-check-names
Gilles Peskinecc26e3b2021-04-21 19:01:59 +02001085#error "MBEDTLS_TLS_DEFAULT_ALLOW_SHA1_IN_CERTIFICATES was removed in Mbed TLS 3.0. See the ChangeLog entry if you really need SHA-1-signed certificates."
Gilles Peskinefa4e4b82021-04-21 18:45:41 +02001086#endif
1087
1088#if defined(MBEDTLS_ZLIB_SUPPORT) //no-check-names
Dave Rodgman017a1992022-03-31 14:07:01 +01001089#error "MBEDTLS_ZLIB_SUPPORT was removed in Mbed TLS 3.0. See https://github.com/Mbed-TLS/mbedtls/issues/4031"
Gilles Peskinefa4e4b82021-04-21 18:45:41 +02001090#endif
1091
TRodziewiczcc707412021-05-14 15:08:04 +02001092#if defined(MBEDTLS_CHECK_PARAMS) //no-check-names
Dave Rodgman017a1992022-03-31 14:07:01 +01001093#error "MBEDTLS_CHECK_PARAMS was removed in Mbed TLS 3.0. See https://github.com/Mbed-TLS/mbedtls/issues/4313"
TRodziewiczcc707412021-05-14 15:08:04 +02001094#endif
1095
TRodziewicz4e57f4c2021-05-31 12:58:25 +02001096#if defined(MBEDTLS_SSL_CID_PADDING_GRANULARITY) //no-check-names
Dave Rodgman017a1992022-03-31 14:07:01 +01001097#error "MBEDTLS_SSL_CID_PADDING_GRANULARITY was removed in Mbed TLS 3.0. See https://github.com/Mbed-TLS/mbedtls/issues/4335"
TRodziewicz4e57f4c2021-05-31 12:58:25 +02001098#endif
1099
1100#if defined(MBEDTLS_SSL_TLS1_3_PADDING_GRANULARITY) //no-check-names
Dave Rodgman017a1992022-03-31 14:07:01 +01001101#error "MBEDTLS_SSL_TLS1_3_PADDING_GRANULARITY was removed in Mbed TLS 3.0. See https://github.com/Mbed-TLS/mbedtls/issues/4335"
TRodziewicz4e57f4c2021-05-31 12:58:25 +02001102#endif
1103
Thomas Daubney4a7010d2021-06-15 12:54:14 +01001104#if defined(MBEDTLS_SSL_TRUNCATED_HMAC) //no-check-names
Dave Rodgman017a1992022-03-31 14:07:01 +01001105#error "MBEDTLS_SSL_TRUNCATED_HMAC was removed in Mbed TLS 3.0. See https://github.com/Mbed-TLS/mbedtls/issues/4341"
Thomas Daubney4a7010d2021-06-15 12:54:14 +01001106#endif
1107
Nayna Jainc9deb182020-11-16 19:03:12 +00001108#if defined(MBEDTLS_PKCS7_C) && ( ( !defined(MBEDTLS_ASN1_PARSE_C) ) || \
1109 ( !defined(MBEDTLS_OID_C) ) || ( !defined(MBEDTLS_PK_PARSE_C) ) || \
1110 ( !defined(MBEDTLS_X509_CRT_PARSE_C) ) ||\
Dave Rodgman50e56162022-11-10 10:07:35 +00001111 ( !defined(MBEDTLS_X509_CRL_PARSE_C) ) || ( !defined(MBEDTLS_BIGNUM_C) ) || \
Nick Child89e82e12022-11-09 10:36:10 -06001112 ( !defined(MBEDTLS_MD_C) ) )
Nayna Jainc9deb182020-11-16 19:03:12 +00001113#error "MBEDTLS_PKCS7_C is defined, but not all prerequisites"
1114#endif
1115
Manuel Pégourié-Gonnard45bcb6a2023-03-10 11:40:48 +01001116/* Undefine helper symbols */
1117#undef MBEDTLS_PK_HAVE_ECDSA
Valerio Setti82b484e2023-03-16 08:21:44 +01001118#undef MBEDTLS_PK_HAVE_JPAKE
Valerio Setti5d1f29e2023-03-15 14:09:28 +01001119#undef MBEDTLS_PK_HAVE_ECDH
Manuel Pégourié-Gonnardbb21c5a2023-03-21 23:53:57 +01001120#undef MBEDTLS_MD_HAVE_SHA256
1121#undef MBEDTLS_MD_HAVE_SHA384
1122#undef MBEDTLS_MD_HAVE_SHA512
Manuel Pégourié-Gonnard45bcb6a2023-03-10 11:40:48 +01001123
Manuel Pégourié-Gonnardf78e4de2015-05-29 10:52:14 +02001124/*
1125 * Avoid warning from -pedantic. This is a convenient place for this
1126 * workaround since this is included by every single file before the
Antonin Décimo36e89b52019-01-23 15:24:37 +01001127 * #if defined(MBEDTLS_xxx_C) that results in empty translation units.
Manuel Pégourié-Gonnardf78e4de2015-05-29 10:52:14 +02001128 */
1129typedef int mbedtls_iso_c_forbids_empty_translation_units;
1130
David Horstmann1b847812022-11-14 15:40:46 +00001131/* *INDENT-ON* */
Manuel Pégourié-Gonnard2cf5a7c2015-04-08 12:49:31 +02001132#endif /* MBEDTLS_CHECK_CONFIG_H */