Remove reference for PSA_WANT_ALG_SECP_K1_224

The `PSA_WANT_ALG_SECP_K1_224` symbol has been removed.

Signed-off-by: Gabor Mezei <gabor.mezei@arm.com>
This commit is contained in:
Gabor Mezei 2025-01-10 17:44:41 +01:00
parent 0a2f257492
commit 069e3e6fe7
No known key found for this signature in database
GPG Key ID: 6310BD29B0BFF98C

8
tests/scripts/depends.py Normal file → Executable file
View File

@ -287,7 +287,6 @@ REVERSE_DEPENDENCIES = {
'PSA_WANT_ECC_SECP_R1_512': ['MBEDTLS_ECP_DP_SECP512R1_ENABLED'],
'PSA_WANT_ECC_SECP_R1_521': ['MBEDTLS_ECP_DP_SECP521R1_ENABLED'],
'PSA_WANT_ECC_SECP_K1_192': ['MBEDTLS_ECP_DP_SECP192K1_ENABLED'],
'PSA_WANT_ECC_SECP_K1_224': ['MBEDTLS_ECP_DP_SECP224K1_ENABLED'],
'PSA_WANT_ECC_SECP_K1_256': ['MBEDTLS_ECP_DP_SECP256K1_ENABLED'],
'MBEDTLS_ECDSA_C': ['MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED',
@ -545,11 +544,8 @@ class DomainData:
build_and_test),
# Elliptic curves. Run the test suites.
# The SECP_K1_224 is not stable via the PSA API.
# See https://github.com/Mbed-TLS/mbedtls/issues/3541
'curves': ExclusiveDomain(curve_symbols,
build_and_test,
exclude=r'PSA_WANT_ECC_SECP_K1_224'),
'curves': ExclusiveDomain(curve_symbols, build_and_test),
# Hash algorithms. Excluding exclusive domains of MD, RIPEMD, SHA1,
# SHA224 and SHA384 because MBEDTLS_ENTROPY_C is extensively used
# across various modules, but it depends on either SHA256 or SHA512.