Disable PSA_WANT_KEY_TYPE_DES to stop DES from being re-enabled
Signed-off-by: Ari Weiler-Ofek <ariwei01@e134794.arm.com>
diff --git a/tests/scripts/components-configuration-crypto.sh b/tests/scripts/components-configuration-crypto.sh
index 9820408..43c30a2 100644
--- a/tests/scripts/components-configuration-crypto.sh
+++ b/tests/scripts/components-configuration-crypto.sh
@@ -1818,6 +1818,10 @@
scripts/config.py unset MBEDTLS_CHACHA20_C
scripts/config.py unset MBEDTLS_CAMELLIA_C
+ # Disable DES, if it still exists.
+ # This can be removed once we remove DES from the library.
+ scripts/config.py unset PSA_WANT_KEY_TYPE_DES
+
# Disable CIPHER_C entirely as all ciphers/AEADs are accelerated and PSA
# does not depend on it.
scripts/config.py unset MBEDTLS_CIPHER_C
@@ -1856,6 +1860,10 @@
msg "build: full config with non-accelerated cipher inc. AEAD and CMAC"
common_psa_crypto_config_accel_cipher_aead_cmac
+ # Disable DES, if it still exists.
+ # This can be removed once we remove DES from the library.
+ scripts/config.py unset PSA_WANT_KEY_TYPE_DES
+
make
msg "test: full config with non-accelerated cipher inc. AEAD and CMAC"