From 24ec529f8250c6a71b917e304e9466e5270ab5ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bence=20Sz=C3=A9pk=C3=BAti?= Date: Thu, 11 Nov 2021 16:33:48 +0100 Subject: [PATCH] Multipart AEAD is not supported in Mbed TLS 2.x MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Bence Szépkúti --- tests/scripts/test_psa_compliance.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/scripts/test_psa_compliance.py b/tests/scripts/test_psa_compliance.py index f31640332..c4dbc946b 100755 --- a/tests/scripts/test_psa_compliance.py +++ b/tests/scripts/test_psa_compliance.py @@ -38,9 +38,8 @@ EXPECTED_FAILURES = { # - Tracked in issue #5143 221, - # Multipart CCM is not supported. - # - Tracked in issue #3721 - 252, 253, 254, 255, 256, 257, 258, 259, 261, + # Multipart AEAD is not supported in Mbed TLS 2.x. + 252, 253, 254, 255, 256, 257, 258, 259, 260, 261, # psa_hash_suspend() and psa_hash_resume() are not supported. # - Tracked in issue #3274