Merge pull request #8802 from mpg/adjust-vs-check
Misc. clean-ups in `check_config.h`
This commit is contained in:
commit
cd376dbec8
2 changed files with 60 additions and 155 deletions
|
@ -27,18 +27,8 @@
|
||||||
#if !defined(MBEDTLS_PLATFORM_C)
|
#if !defined(MBEDTLS_PLATFORM_C)
|
||||||
#error "MBEDTLS_PLATFORM_C is required on Windows"
|
#error "MBEDTLS_PLATFORM_C is required on Windows"
|
||||||
#endif
|
#endif
|
||||||
|
/* See auto-enabling SNPRINTF_ALT and VSNPRINTF_ALT
|
||||||
/* Fix the config here. Not convenient to put an #ifdef _WIN32 in mbedtls_config.h as
|
* in * config_adjust_legacy_crypto.h */
|
||||||
* it would confuse config.py. */
|
|
||||||
#if !defined(MBEDTLS_PLATFORM_SNPRINTF_ALT) && \
|
|
||||||
!defined(MBEDTLS_PLATFORM_SNPRINTF_MACRO)
|
|
||||||
#define MBEDTLS_PLATFORM_SNPRINTF_ALT
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if !defined(MBEDTLS_PLATFORM_VSNPRINTF_ALT) && \
|
|
||||||
!defined(MBEDTLS_PLATFORM_VSNPRINTF_MACRO)
|
|
||||||
#define MBEDTLS_PLATFORM_VSNPRINTF_ALT
|
|
||||||
#endif
|
|
||||||
#endif /* _MINGW32__ || (_MSC_VER && (_MSC_VER <= 1900)) */
|
#endif /* _MINGW32__ || (_MSC_VER && (_MSC_VER <= 1900)) */
|
||||||
|
|
||||||
#if defined(TARGET_LIKE_MBED) && defined(MBEDTLS_NET_C)
|
#if defined(TARGET_LIKE_MBED) && defined(MBEDTLS_NET_C)
|
||||||
|
@ -54,65 +44,6 @@
|
||||||
#error "MBEDTLS_HAVE_TIME_DATE without MBEDTLS_HAVE_TIME does not make sense"
|
#error "MBEDTLS_HAVE_TIME_DATE without MBEDTLS_HAVE_TIME does not make sense"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Check that each MBEDTLS_ECP_DP_xxx symbol has its PSA_WANT_ECC_xxx counterpart
|
|
||||||
* when PSA crypto is enabled. */
|
|
||||||
#if defined(MBEDTLS_PSA_CRYPTO_CONFIG) || defined(MBEDTLS_PSA_CRYPTO_C)
|
|
||||||
|
|
||||||
#if defined(MBEDTLS_ECP_DP_BP256R1_ENABLED) && !defined(PSA_WANT_ECC_BRAINPOOL_P_R1_256)
|
|
||||||
#error "MBEDTLS_ECP_DP_BP256R1_ENABLED defined, but not its PSA counterpart"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(MBEDTLS_ECP_DP_BP384R1_ENABLED) && !defined(PSA_WANT_ECC_BRAINPOOL_P_R1_384)
|
|
||||||
#error "MBEDTLS_ECP_DP_BP384R1_ENABLED defined, but not its PSA counterpart"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(MBEDTLS_ECP_DP_BP512R1_ENABLED) && !defined(PSA_WANT_ECC_BRAINPOOL_P_R1_512)
|
|
||||||
#error "MBEDTLS_ECP_DP_BP512R1_ENABLED defined, but not its PSA counterpart"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(MBEDTLS_ECP_DP_CURVE25519_ENABLED) && !defined(PSA_WANT_ECC_MONTGOMERY_255)
|
|
||||||
#error "MBEDTLS_ECP_DP_CURVE25519_ENABLED defined, but not its PSA counterpart"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(MBEDTLS_ECP_DP_CURVE448_ENABLED) && !defined(PSA_WANT_ECC_MONTGOMERY_448)
|
|
||||||
#error "MBEDTLS_ECP_DP_CURVE448_ENABLED defined, but not its PSA counterpart"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(MBEDTLS_ECP_DP_SECP192R1_ENABLED) && !defined(PSA_WANT_ECC_SECP_R1_192)
|
|
||||||
#error "MBEDTLS_ECP_DP_SECP192R1_ENABLED defined, but not its PSA counterpart"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(MBEDTLS_ECP_DP_SECP224R1_ENABLED) && !defined(PSA_WANT_ECC_SECP_R1_224)
|
|
||||||
#error "MBEDTLS_ECP_DP_SECP224R1_ENABLED defined, but not its PSA counterpart"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(MBEDTLS_ECP_DP_SECP256R1_ENABLED) && !defined(PSA_WANT_ECC_SECP_R1_256)
|
|
||||||
#error "MBEDTLS_ECP_DP_SECP256R1_ENABLED defined, but not its PSA counterpart"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(MBEDTLS_ECP_DP_SECP384R1_ENABLED) && !defined(PSA_WANT_ECC_SECP_R1_384)
|
|
||||||
#error "MBEDTLS_ECP_DP_SECP384R1_ENABLED defined, but not its PSA counterpart"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(MBEDTLS_ECP_DP_SECP521R1_ENABLED) && !defined(PSA_WANT_ECC_SECP_R1_521)
|
|
||||||
#error "MBEDTLS_ECP_DP_SECP521R1_ENABLED defined, but not its PSA counterpart"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(MBEDTLS_ECP_DP_SECP192K1_ENABLED) && !defined(PSA_WANT_ECC_SECP_K1_192)
|
|
||||||
#error "MBEDTLS_ECP_DP_SECP192K1_ENABLED defined, but not its PSA counterpart"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* SECP224K1 is buggy in PSA API so we skip this check */
|
|
||||||
#if 0 && defined(MBEDTLS_ECP_DP_SECP224K1_ENABLED) && !defined(PSA_WANT_ECC_SECP_K1_224)
|
|
||||||
#error "MBEDTLS_ECP_DP_SECP224K1_ENABLED defined, but not its PSA counterpart"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(MBEDTLS_ECP_DP_SECP256K1_ENABLED) && !defined(PSA_WANT_ECC_SECP_K1_256)
|
|
||||||
#error "MBEDTLS_ECP_DP_SECP256K1_ENABLED defined, but not its PSA counterpart"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#endif /* MBEDTLS_PSA_CRYPTO_CONFIG || MBEDTLS_PSA_CRYPTO_C */
|
|
||||||
|
|
||||||
/* Limitations on ECC key types acceleration: if we have any of `PUBLIC_KEY`,
|
/* Limitations on ECC key types acceleration: if we have any of `PUBLIC_KEY`,
|
||||||
* `KEY_PAIR_BASIC`, `KEY_PAIR_IMPORT`, `KEY_PAIR_EXPORT` then we must have
|
* `KEY_PAIR_BASIC`, `KEY_PAIR_IMPORT`, `KEY_PAIR_EXPORT` then we must have
|
||||||
* all 4 of them.
|
* all 4 of them.
|
||||||
|
@ -234,9 +165,8 @@
|
||||||
#endif
|
#endif
|
||||||
#endif /* MBEDTLS_PK_C && MBEDTLS_USE_PSA_CRYPTO */
|
#endif /* MBEDTLS_PK_C && MBEDTLS_USE_PSA_CRYPTO */
|
||||||
|
|
||||||
#if defined(MBEDTLS_ECJPAKE_C) && \
|
#if defined(MBEDTLS_ECJPAKE_C) && \
|
||||||
( !defined(MBEDTLS_ECP_C) || \
|
!defined(MBEDTLS_ECP_C)
|
||||||
!( defined(MBEDTLS_MD_C) || defined(MBEDTLS_PSA_CRYPTO_C) ) )
|
|
||||||
#error "MBEDTLS_ECJPAKE_C defined, but not all prerequisites"
|
#error "MBEDTLS_ECJPAKE_C defined, but not all prerequisites"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -281,23 +211,8 @@
|
||||||
#error "MBEDTLS_PK_PARSE_C defined, but not all prerequisites"
|
#error "MBEDTLS_PK_PARSE_C defined, but not all prerequisites"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Helpers for hash dependencies, will be undefined at the end of the file */
|
|
||||||
/* Do SHA-256, 384, 512 to cover Entropy and TLS. */
|
|
||||||
#if defined(MBEDTLS_SHA256_C) || \
|
|
||||||
(defined(MBEDTLS_PSA_CRYPTO_C) && defined(PSA_WANT_ALG_SHA_256))
|
|
||||||
#define MBEDTLS_MD_HAVE_SHA256
|
|
||||||
#endif
|
|
||||||
#if defined(MBEDTLS_SHA384_C) || \
|
|
||||||
(defined(MBEDTLS_PSA_CRYPTO_C) && defined(PSA_WANT_ALG_SHA_384))
|
|
||||||
#define MBEDTLS_MD_HAVE_SHA384
|
|
||||||
#endif
|
|
||||||
#if defined(MBEDTLS_SHA512_C) || \
|
|
||||||
(defined(MBEDTLS_PSA_CRYPTO_C) && defined(PSA_WANT_ALG_SHA_512))
|
|
||||||
#define MBEDTLS_MD_HAVE_SHA512
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(MBEDTLS_ENTROPY_C) && \
|
#if defined(MBEDTLS_ENTROPY_C) && \
|
||||||
!(defined(MBEDTLS_MD_HAVE_SHA512) || defined(MBEDTLS_MD_HAVE_SHA256))
|
!(defined(MBEDTLS_MD_CAN_SHA512) || defined(MBEDTLS_MD_CAN_SHA256))
|
||||||
#error "MBEDTLS_ENTROPY_C defined, but not all prerequisites"
|
#error "MBEDTLS_ENTROPY_C defined, but not all prerequisites"
|
||||||
#endif
|
#endif
|
||||||
#if defined(MBEDTLS_ENTROPY_C) && \
|
#if defined(MBEDTLS_ENTROPY_C) && \
|
||||||
|
@ -305,24 +220,24 @@
|
||||||
#error "MBEDTLS_CTR_DRBG_ENTROPY_LEN value too high"
|
#error "MBEDTLS_CTR_DRBG_ENTROPY_LEN value too high"
|
||||||
#endif
|
#endif
|
||||||
#if defined(MBEDTLS_ENTROPY_C) && \
|
#if defined(MBEDTLS_ENTROPY_C) && \
|
||||||
(defined(MBEDTLS_ENTROPY_FORCE_SHA256) || !defined(MBEDTLS_MD_HAVE_SHA512)) \
|
(defined(MBEDTLS_ENTROPY_FORCE_SHA256) || !defined(MBEDTLS_MD_CAN_SHA512)) \
|
||||||
&& defined(MBEDTLS_CTR_DRBG_ENTROPY_LEN) && (MBEDTLS_CTR_DRBG_ENTROPY_LEN > 32)
|
&& defined(MBEDTLS_CTR_DRBG_ENTROPY_LEN) && (MBEDTLS_CTR_DRBG_ENTROPY_LEN > 32)
|
||||||
#error "MBEDTLS_CTR_DRBG_ENTROPY_LEN value too high"
|
#error "MBEDTLS_CTR_DRBG_ENTROPY_LEN value too high"
|
||||||
#endif
|
#endif
|
||||||
#if defined(MBEDTLS_ENTROPY_C) && \
|
#if defined(MBEDTLS_ENTROPY_C) && \
|
||||||
defined(MBEDTLS_ENTROPY_FORCE_SHA256) && !defined(MBEDTLS_MD_HAVE_SHA256)
|
defined(MBEDTLS_ENTROPY_FORCE_SHA256) && !defined(MBEDTLS_MD_CAN_SHA256)
|
||||||
#error "MBEDTLS_ENTROPY_FORCE_SHA256 defined, but not all prerequisites"
|
#error "MBEDTLS_ENTROPY_FORCE_SHA256 defined, but not all prerequisites"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(__has_feature)
|
#if defined(__has_feature)
|
||||||
#if __has_feature(memory_sanitizer)
|
#if __has_feature(memory_sanitizer)
|
||||||
#define MBEDTLS_HAS_MEMSAN
|
#define MBEDTLS_HAS_MEMSAN // #undef at the end of this paragraph
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
#if defined(MBEDTLS_TEST_CONSTANT_FLOW_MEMSAN) && !defined(MBEDTLS_HAS_MEMSAN)
|
#if defined(MBEDTLS_TEST_CONSTANT_FLOW_MEMSAN) && !defined(MBEDTLS_HAS_MEMSAN)
|
||||||
#error "MBEDTLS_TEST_CONSTANT_FLOW_MEMSAN requires building with MemorySanitizer"
|
#error "MBEDTLS_TEST_CONSTANT_FLOW_MEMSAN requires building with MemorySanitizer"
|
||||||
#endif
|
#endif
|
||||||
#undef MBEDTLS_HAS_MEMSAN
|
#undef MBEDTLS_HAS_MEMSAN // temporary macro defined above
|
||||||
|
|
||||||
#if defined(MBEDTLS_CCM_C) && \
|
#if defined(MBEDTLS_CCM_C) && \
|
||||||
!(defined(MBEDTLS_CCM_GCM_CAN_AES) || defined(MBEDTLS_CCM_GCM_CAN_ARIA) || \
|
!(defined(MBEDTLS_CCM_GCM_CAN_AES) || defined(MBEDTLS_CCM_GCM_CAN_ARIA) || \
|
||||||
|
@ -388,28 +303,6 @@
|
||||||
#error "MBEDTLS_HMAC_DRBG_C defined, but not all prerequisites"
|
#error "MBEDTLS_HMAC_DRBG_C defined, but not all prerequisites"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Helper for JPAKE dependencies, will be undefined at the end of the file */
|
|
||||||
#if defined(MBEDTLS_USE_PSA_CRYPTO)
|
|
||||||
#if defined(PSA_WANT_ALG_JPAKE) && defined(PSA_WANT_KEY_TYPE_ECC_KEY_PAIR_BASIC)
|
|
||||||
#define MBEDTLS_PK_HAVE_JPAKE
|
|
||||||
#endif
|
|
||||||
#else /* MBEDTLS_USE_PSA_CRYPTO */
|
|
||||||
#if defined(MBEDTLS_ECJPAKE_C)
|
|
||||||
#define MBEDTLS_PK_HAVE_JPAKE
|
|
||||||
#endif
|
|
||||||
#endif /* MBEDTLS_USE_PSA_CRYPTO */
|
|
||||||
|
|
||||||
/* Helper for curve SECP256R1 */
|
|
||||||
#if defined(MBEDTLS_USE_PSA_CRYPTO)
|
|
||||||
#if defined(PSA_WANT_ECC_SECP_R1_256)
|
|
||||||
#define MBEDTLS_PK_HAVE_CURVE_SECP256R1
|
|
||||||
#endif
|
|
||||||
#else /* MBEDTLS_USE_PSA_CRYPTO */
|
|
||||||
#if defined(MBEDTLS_ECP_DP_SECP256R1_ENABLED)
|
|
||||||
#define MBEDTLS_PK_HAVE_CURVE_SECP256R1
|
|
||||||
#endif
|
|
||||||
#endif /* MBEDTLS_USE_PSA_CRYPTO */
|
|
||||||
|
|
||||||
#if defined(MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED) && \
|
#if defined(MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED) && \
|
||||||
( !defined(MBEDTLS_CAN_ECDH) || \
|
( !defined(MBEDTLS_CAN_ECDH) || \
|
||||||
!defined(MBEDTLS_PK_CAN_ECDSA_SIGN) || \
|
!defined(MBEDTLS_PK_CAN_ECDSA_SIGN) || \
|
||||||
|
@ -463,43 +356,48 @@
|
||||||
#error "MBEDTLS_KEY_EXCHANGE_RSA_ENABLED defined, but not all prerequisites"
|
#error "MBEDTLS_KEY_EXCHANGE_RSA_ENABLED defined, but not all prerequisites"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED) && \
|
#if defined(MBEDTLS_USE_PSA_CRYPTO)
|
||||||
( !defined(MBEDTLS_PK_HAVE_JPAKE) || \
|
#if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED) && \
|
||||||
!defined(MBEDTLS_PK_HAVE_CURVE_SECP256R1) )
|
( !defined(PSA_WANT_ALG_JPAKE) || \
|
||||||
|
!defined(PSA_WANT_KEY_TYPE_ECC_KEY_PAIR_BASIC) || \
|
||||||
|
!defined(PSA_WANT_ECC_SECP_R1_256) )
|
||||||
#error "MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED defined, but not all prerequisites"
|
#error "MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED defined, but not all prerequisites"
|
||||||
#endif
|
#endif
|
||||||
|
#else /* MBEDTLS_USE_PSA_CRYPTO */
|
||||||
|
#if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED) && \
|
||||||
|
( !defined(MBEDTLS_ECJPAKE_C) || \
|
||||||
|
!defined(MBEDTLS_ECP_DP_SECP256R1_ENABLED) )
|
||||||
|
#error "MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED defined, but not all prerequisites"
|
||||||
|
#endif
|
||||||
|
#endif /* MBEDTLS_USE_PSA_CRYPTO */
|
||||||
|
|
||||||
/* Use of EC J-PAKE in TLS requires SHA-256. */
|
/* Use of EC J-PAKE in TLS requires SHA-256. */
|
||||||
#if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED) && \
|
#if defined(MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED) && \
|
||||||
!defined(MBEDTLS_MD_HAVE_SHA256)
|
!defined(MBEDTLS_MD_CAN_SHA256)
|
||||||
#error "MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED defined, but not all prerequisites"
|
#error "MBEDTLS_KEY_EXCHANGE_ECJPAKE_ENABLED defined, but not all prerequisites"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED) && \
|
#if defined(MBEDTLS_KEY_EXCHANGE_WITH_CERT_ENABLED) && \
|
||||||
!defined(MBEDTLS_SSL_KEEP_PEER_CERTIFICATE) && \
|
!defined(MBEDTLS_SSL_KEEP_PEER_CERTIFICATE) && \
|
||||||
( !defined(MBEDTLS_SHA256_C) && \
|
!defined(MBEDTLS_MD_CAN_SHA256) && \
|
||||||
!defined(MBEDTLS_SHA512_C) && \
|
!defined(MBEDTLS_MD_CAN_SHA512) && \
|
||||||
!defined(MBEDTLS_SHA1_C) )
|
!defined(MBEDTLS_MD_CAN_SHA1)
|
||||||
#error "!MBEDTLS_SSL_KEEP_PEER_CERTIFICATE requires MBEDTLS_SHA512_C, MBEDTLS_SHA256_C or MBEDTLS_SHA1_C"
|
#error "!MBEDTLS_SSL_KEEP_PEER_CERTIFICATE requires SHA-512, SHA-256 or SHA-1".
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(MBEDTLS_MD_C) && !( \
|
#if defined(MBEDTLS_MD_C) && \
|
||||||
defined(MBEDTLS_MD5_C) || \
|
!defined(MBEDTLS_MD_CAN_MD5) && \
|
||||||
defined(MBEDTLS_RIPEMD160_C) || \
|
!defined(MBEDTLS_MD_CAN_RIPEMD160) && \
|
||||||
defined(MBEDTLS_SHA1_C) || \
|
!defined(MBEDTLS_MD_CAN_SHA1) && \
|
||||||
defined(MBEDTLS_SHA224_C) || \
|
!defined(MBEDTLS_MD_CAN_SHA224) && \
|
||||||
defined(MBEDTLS_SHA256_C) || \
|
!defined(MBEDTLS_MD_CAN_SHA256) && \
|
||||||
defined(MBEDTLS_SHA384_C) || \
|
!defined(MBEDTLS_MD_CAN_SHA384) && \
|
||||||
defined(MBEDTLS_SHA512_C) || \
|
!defined(MBEDTLS_MD_CAN_SHA512) && \
|
||||||
(defined(MBEDTLS_PSA_CRYPTO_C) && \
|
!defined(MBEDTLS_MD_CAN_SHA3_224) && \
|
||||||
(defined(PSA_WANT_ALG_MD5) || \
|
!defined(MBEDTLS_MD_CAN_SHA3_256) && \
|
||||||
defined(PSA_WANT_ALG_RIPEMD160) || \
|
!defined(MBEDTLS_MD_CAN_SHA3_384) && \
|
||||||
defined(PSA_WANT_ALG_SHA_1) || \
|
!defined(MBEDTLS_MD_CAN_SHA3_512)
|
||||||
defined(PSA_WANT_ALG_SHA_224) || \
|
#error "MBEDTLS_MD_C defined, but no hash algorithm"
|
||||||
defined(PSA_WANT_ALG_SHA_256) || \
|
|
||||||
defined(PSA_WANT_ALG_SHA_384) || \
|
|
||||||
defined(PSA_WANT_ALG_SHA_512))))
|
|
||||||
#error "MBEDTLS_MD_C defined, but not all prerequisites"
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(MBEDTLS_LMS_C) && \
|
#if defined(MBEDTLS_LMS_C) && \
|
||||||
|
@ -975,7 +873,7 @@
|
||||||
#endif
|
#endif
|
||||||
#else /* MBEDTLS_USE_PSA_CRYPTO */
|
#else /* MBEDTLS_USE_PSA_CRYPTO */
|
||||||
#if !defined(MBEDTLS_MD_C) || \
|
#if !defined(MBEDTLS_MD_C) || \
|
||||||
!(defined(MBEDTLS_MD_HAVE_SHA256) || defined(MBEDTLS_MD_HAVE_SHA384))
|
!(defined(MBEDTLS_MD_CAN_SHA256) || defined(MBEDTLS_MD_CAN_SHA384))
|
||||||
#error "MBEDTLS_SSL_TLS_C defined, but not all prerequisites"
|
#error "MBEDTLS_SSL_TLS_C defined, but not all prerequisites"
|
||||||
#endif
|
#endif
|
||||||
#endif /* MBEDTLS_USE_PSA_CRYPTO */
|
#endif /* MBEDTLS_USE_PSA_CRYPTO */
|
||||||
|
@ -1074,20 +972,18 @@
|
||||||
#if !defined(MBEDTLS_THREADING_C) || defined(MBEDTLS_THREADING_IMPL)
|
#if !defined(MBEDTLS_THREADING_C) || defined(MBEDTLS_THREADING_IMPL)
|
||||||
#error "MBEDTLS_THREADING_PTHREAD defined, but not all prerequisites"
|
#error "MBEDTLS_THREADING_PTHREAD defined, but not all prerequisites"
|
||||||
#endif
|
#endif
|
||||||
#define MBEDTLS_THREADING_IMPL
|
#define MBEDTLS_THREADING_IMPL // undef at the end of this paragraph
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(MBEDTLS_THREADING_ALT)
|
#if defined(MBEDTLS_THREADING_ALT)
|
||||||
#if !defined(MBEDTLS_THREADING_C) || defined(MBEDTLS_THREADING_IMPL)
|
#if !defined(MBEDTLS_THREADING_C) || defined(MBEDTLS_THREADING_IMPL)
|
||||||
#error "MBEDTLS_THREADING_ALT defined, but not all prerequisites"
|
#error "MBEDTLS_THREADING_ALT defined, but not all prerequisites"
|
||||||
#endif
|
#endif
|
||||||
#define MBEDTLS_THREADING_IMPL
|
#define MBEDTLS_THREADING_IMPL // undef at the end of this paragraph
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(MBEDTLS_THREADING_C) && !defined(MBEDTLS_THREADING_IMPL)
|
#if defined(MBEDTLS_THREADING_C) && !defined(MBEDTLS_THREADING_IMPL)
|
||||||
#error "MBEDTLS_THREADING_C defined, single threading implementation required"
|
#error "MBEDTLS_THREADING_C defined, single threading implementation required"
|
||||||
#endif
|
#endif
|
||||||
#undef MBEDTLS_THREADING_IMPL
|
#undef MBEDTLS_THREADING_IMPL // temporary macro defined above
|
||||||
|
|
||||||
#if defined(MBEDTLS_USE_PSA_CRYPTO) && !defined(MBEDTLS_PSA_CRYPTO_C)
|
#if defined(MBEDTLS_USE_PSA_CRYPTO) && !defined(MBEDTLS_PSA_CRYPTO_C)
|
||||||
#error "MBEDTLS_USE_PSA_CRYPTO defined, but not all prerequisites"
|
#error "MBEDTLS_USE_PSA_CRYPTO defined, but not all prerequisites"
|
||||||
|
@ -1218,13 +1114,6 @@
|
||||||
#error "MBEDTLS_PKCS7_C is defined, but not all prerequisites"
|
#error "MBEDTLS_PKCS7_C is defined, but not all prerequisites"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Undefine helper symbols */
|
|
||||||
#undef MBEDTLS_PK_HAVE_JPAKE
|
|
||||||
#undef MBEDTLS_MD_HAVE_SHA256
|
|
||||||
#undef MBEDTLS_MD_HAVE_SHA384
|
|
||||||
#undef MBEDTLS_MD_HAVE_SHA512
|
|
||||||
#undef MBEDTLS_PK_HAVE_CURVE_SECP256R1
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Avoid warning from -pedantic. This is a convenient place for this
|
* Avoid warning from -pedantic. This is a convenient place for this
|
||||||
* workaround since this is included by every single file before the
|
* workaround since this is included by every single file before the
|
||||||
|
|
|
@ -22,6 +22,22 @@
|
||||||
#ifndef MBEDTLS_CONFIG_ADJUST_LEGACY_CRYPTO_H
|
#ifndef MBEDTLS_CONFIG_ADJUST_LEGACY_CRYPTO_H
|
||||||
#define MBEDTLS_CONFIG_ADJUST_LEGACY_CRYPTO_H
|
#define MBEDTLS_CONFIG_ADJUST_LEGACY_CRYPTO_H
|
||||||
|
|
||||||
|
/* Ideally, we'd set those as defaults in mbedtls_config.h, but
|
||||||
|
* putting an #ifdef _WIN32 in mbedtls_config.h would confuse config.py.
|
||||||
|
*
|
||||||
|
* So, adjust it here.
|
||||||
|
* Not related to crypto, but this is the bottom of the stack. */
|
||||||
|
#if defined(__MINGW32__) || (defined(_MSC_VER) && _MSC_VER <= 1900)
|
||||||
|
#if !defined(MBEDTLS_PLATFORM_SNPRINTF_ALT) && \
|
||||||
|
!defined(MBEDTLS_PLATFORM_SNPRINTF_MACRO)
|
||||||
|
#define MBEDTLS_PLATFORM_SNPRINTF_ALT
|
||||||
|
#endif
|
||||||
|
#if !defined(MBEDTLS_PLATFORM_VSNPRINTF_ALT) && \
|
||||||
|
!defined(MBEDTLS_PLATFORM_VSNPRINTF_MACRO)
|
||||||
|
#define MBEDTLS_PLATFORM_VSNPRINTF_ALT
|
||||||
|
#endif
|
||||||
|
#endif /* _MINGW32__ || (_MSC_VER && (_MSC_VER <= 1900)) */
|
||||||
|
|
||||||
/* Auto-enable CIPHER_C when any of the unauthenticated ciphers is builtin
|
/* Auto-enable CIPHER_C when any of the unauthenticated ciphers is builtin
|
||||||
* in PSA. */
|
* in PSA. */
|
||||||
#if defined(MBEDTLS_PSA_CRYPTO_C) && \
|
#if defined(MBEDTLS_PSA_CRYPTO_C) && \
|
||||||
|
|
Loading…
Reference in a new issue