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

Merge pull request #9385 from eleuzi01/replace-ecdsa-some

Replace MBEDTLS_PK_HAVE_ECDSA* with PSA_WANT counterparts
This commit is contained in:
David Horstmann
2024-09-19 13:53:18 +00:00
committed by GitHub
20 changed files with 414 additions and 428 deletions

View File

@ -659,9 +659,11 @@ component_test_psa_crypto_config_accel_ecdsa () {
# Configure
# ---------
# Start from default config (no USE_PSA) + TLS 1.3
# Start from default config + TLS 1.3
helper_libtestdriver1_adjust_config "default"
scripts/config.py set MBEDTLS_USE_PSA_CRYPTO
# Disable the module that's accelerated
scripts/config.py unset MBEDTLS_ECDSA_C
@ -673,7 +675,7 @@ component_test_psa_crypto_config_accel_ecdsa () {
# -----
# These hashes are needed for some ECDSA signature tests.
loc_extra_list="ALG_SHA_224 ALG_SHA_256 ALG_SHA_384 ALG_SHA_512 \
loc_extra_list="ALG_SHA_1 ALG_SHA_224 ALG_SHA_256 ALG_SHA_384 ALG_SHA_512 \
ALG_SHA3_224 ALG_SHA3_256 ALG_SHA3_384 ALG_SHA3_512"
helper_libtestdriver1_make_drivers "$loc_accel_list" "$loc_extra_list"