Skip to content

Commit 13c418d

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

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
@@ -196,6 +196,12 @@ def _has_word_re(words: typing.Iterable[str],
196196
# key type disabled. Those dependencies don't really make sense.
197197
# https://github.com/Mbed-TLS/mbedtls/issues/9573
198198
re.compile(r'.* !HMAC with HMAC'),
199+
# We don't test with ECDH disabled but the key type enabled.
200+
# https://github.com/Mbed-TLS/TF-PSA-Crypto/issues/161
201+
re.compile(r'PSA key_agreement.* !ECDH with ECC_KEY_PAIR\(.*'),
202+
# We don't test with FFDH disabled but the key type enabled.
203+
# https://github.com/Mbed-TLS/TF-PSA-Crypto/issues/160
204+
re.compile(r'PSA key_agreement.* !FFDH with DH_KEY_PAIR\(.*'),
199205
],
200206
'test_suite_psa_crypto_op_fail.misc': [
201207
# We don't test this unusual, but sensible configuration.

0 commit comments

Comments
 (0)