1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-30 22:43:08 +03:00

Merge pull request #5532 from ronald-cron-arm/tls13_and_use_psa_crypto

Make TLS 1.3 compatible with MBEDTLS_USE_PSA_CRYPTO
This commit is contained in:
Manuel Pégourié-Gonnard
2022-02-16 17:33:47 +01:00
committed by GitHub
6 changed files with 42 additions and 221 deletions

View File

@ -278,8 +278,7 @@ class MbedTLSCli(TLSProgram):
def pre_checks(self):
ret = ['requires_config_enabled MBEDTLS_DEBUG_C',
'requires_config_enabled MBEDTLS_SSL_CLI_C',
'requires_config_enabled MBEDTLS_SSL_PROTO_TLS1_3',
'requires_config_disabled MBEDTLS_USE_PSA_CRYPTO']
'requires_config_enabled MBEDTLS_SSL_PROTO_TLS1_3']
if self._compat_mode:
ret += ['requires_config_enabled MBEDTLS_SSL_TLS1_3_COMPATIBILITY_MODE']