1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-10-17 04:51:22 +03:00

Cleanup following the removal of RSA legacy options

Signed-off-by: Ronald Cron <ronald.cron@arm.com>
This commit is contained in:
Ronald Cron
2025-09-15 14:39:26 +02:00
parent 2b7f59535f
commit 919a1e4e22
3 changed files with 2 additions and 4 deletions

View File

@@ -266,7 +266,6 @@
* Enable the ECDHE-RSA based ciphersuite modes in SSL / TLS. * Enable the ECDHE-RSA based ciphersuite modes in SSL / TLS.
* *
* Requires: MBEDTLS_ECDH_C or PSA_WANT_ALG_ECDH * Requires: MBEDTLS_ECDH_C or PSA_WANT_ALG_ECDH
* MBEDTLS_RSA_C
* PSA_WANT_ALG_RSA_PKCS1V15_SIGN * PSA_WANT_ALG_RSA_PKCS1V15_SIGN
* MBEDTLS_X509_CRT_PARSE_C * MBEDTLS_X509_CRT_PARSE_C
* *

View File

@@ -4,7 +4,7 @@
Basic usage, to read the Mbed TLS configuration: Basic usage, to read the Mbed TLS configuration:
config = CombinedConfigFile() config = CombinedConfigFile()
if 'MBEDTLS_RSA_C' in config: print('RSA is enabled') if 'MBEDTLS_SSL_TLS_C' in config: print('TLS is enabled')
""" """
## Copyright The Mbed TLS Contributors ## Copyright The Mbed TLS Contributors

View File

@@ -1491,8 +1491,7 @@ component_test_new_psa_want_key_pair_symbol () {
# Start from crypto configuration # Start from crypto configuration
scripts/config.py crypto scripts/config.py crypto
# Remove RSA support and its dependencies # Remove RSA dependencies
scripts/config.py unset MBEDTLS_PKCS1_V15
scripts/config.py unset MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED scripts/config.py unset MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED
scripts/config.py unset MBEDTLS_X509_RSASSA_PSS_SUPPORT scripts/config.py unset MBEDTLS_X509_RSASSA_PSS_SUPPORT