mirror of
https://github.com/yuzu-mirror/mbedtls.git
synced 2025-12-06 07:12:32 +01:00
Fix conflict between restricted and development
MBEDTLS_HAS_ALG_SHA_384_VIA_MD_OR_PSA_BASED_ON_USE_PSA was removed in development and replaced with MBEDTLS_MD_CAN_SHA384. Signed-off-by: Paul Elliott <paul.elliott@arm.com>
This commit is contained in:
parent
f04848cc3b
commit
69034388e9
|
|
@ -611,7 +611,7 @@
|
||||||
#if defined(MBEDTLS_SSL_PROTO_TLS1_3) && \
|
#if defined(MBEDTLS_SSL_PROTO_TLS1_3) && \
|
||||||
defined(MBEDTLS_SSL_SESSION_TICKETS) && \
|
defined(MBEDTLS_SSL_SESSION_TICKETS) && \
|
||||||
defined(MBEDTLS_AES_C) && defined(MBEDTLS_GCM_C) && \
|
defined(MBEDTLS_AES_C) && defined(MBEDTLS_GCM_C) && \
|
||||||
defined(MBEDTLS_HAS_ALG_SHA_384_VIA_MD_OR_PSA_BASED_ON_USE_PSA)
|
defined(MBEDTLS_MD_CAN_SHA384)
|
||||||
#define MBEDTLS_PSK_MAX_LEN 48 /* 384 bits */
|
#define MBEDTLS_PSK_MAX_LEN 48 /* 384 bits */
|
||||||
#else
|
#else
|
||||||
#define MBEDTLS_PSK_MAX_LEN 32 /* 256 bits */
|
#define MBEDTLS_PSK_MAX_LEN 32 /* 256 bits */
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue