1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-08-08 17:42:09 +03:00

Reduce analyze_block_cipher_dispatch exceptions

Signed-off-by: Ryan Everett <ryan.everett@arm.com>
This commit is contained in:
Ryan Everett
2024-02-09 13:02:23 +00:00
parent 75e65fe24b
commit 67f3568895

View File

@@ -562,17 +562,10 @@ KNOWN_TASKS = {
# but these are not available in the accelerated component. # but these are not available in the accelerated component.
re.compile('Set( non-existent)? padding with (AES|CAMELLIA).*'), re.compile('Set( non-existent)? padding with (AES|CAMELLIA).*'),
], ],
'test_suite_pkcs12': [
# The en/decryption part of PKCS#12 is not yet supported.
# The rest of PKCS#12 (key derivation) works, though.
re.compile(r'PBE Encrypt, .*'),
re.compile(r'PBE Decrypt, .*'),
],
'test_suite_pkcs5': [ 'test_suite_pkcs5': [
# The en/decryption part of PKCS#5 is not yet supported. # The AES part of PKCS#5 PBES2 is not yet supported.
# The rest of PKCS#5 (PBKDF2) works, though. # The rest of PKCS#5 (PBKDF2) works, though.
re.compile(r'PBES2 Encrypt, .*'), re.compile(r'PBES2 .* AES-.*')
re.compile(r'PBES2 Decrypt .*'),
], ],
'test_suite_pkparse': [ 'test_suite_pkparse': [
# PEM (called by pkparse) requires AES_C in order to decrypt # PEM (called by pkparse) requires AES_C in order to decrypt