Skip to content

Commit a6c1f56

Browse files
Add ignore list entries for ECDH/FFDH algorithm without key type
Signed-off-by: Gilles Peskine <[email protected]>
1 parent a2a0c39 commit a6c1f56

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/scripts/analyze_outcomes.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -218,6 +218,12 @@ def _has_word_re(words: typing.Iterable[str],
218218
# differing from PSA_WANT_ALG_RSA_PSS.
219219
# https://github.com/Mbed-TLS/mbedtls/issues/9578
220220
re.compile(r'PSA sign RSA_PSS_ANY_SALT.*!(?:MD|RIPEMD|SHA).*'),
221+
# We don't test with ECDH disabled but the key type enabled.
222+
# https://github.com/Mbed-TLS/TF-PSA-Crypto/issues/161
223+
re.compile(r'PSA key_agreement.* !ECDH with ECC_KEY_PAIR\(.*'),
224+
# We don't test with FFDH disabled but the key type enabled.
225+
# https://github.com/Mbed-TLS/TF-PSA-Crypto/issues/160
226+
re.compile(r'PSA key_agreement.* !FFDH with DH_KEY_PAIR\(.*'),
221227
],
222228
'test_suite_psa_crypto_op_fail.misc': [
223229
# We don't test this unusual, but sensible configuration.

0 commit comments

Comments
 (0)