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

Add comparison of accel_ecdh_use_psa against ref

With temporary exclusions to be lifted as follow-ups.

Signed-off-by: Manuel Pégourié-Gonnard <manuel.pegourie-gonnard@arm.com>
This commit is contained in:
Manuel Pégourié-Gonnard
2023-02-21 13:07:19 +01:00
parent 59a2b8fd57
commit e91bcf31b6
2 changed files with 72 additions and 21 deletions

View File

@@ -183,6 +183,23 @@ TASKS = {
}
}
},
'analyze_driver_vs_reference_ecdh': {
'test_function': do_analyze_driver_vs_reference,
'args': {
'component_ref': 'test_psa_crypto_config_reference_ecdh_use_psa',
'component_driver': 'test_psa_crypto_config_accel_ecdh_use_psa',
'ignored_suites': [
'ecdh', # the software implementation that's excluded
],
'ignored_tests': {
# temporary
'test_suite_psa_crypto': [
'PSA key agreement setup: ECDH, unknown KDF',
'PSA key policy: raw agreement, key permits raw agreement, but algorithm is not raw',
],
}
}
},
}
def main():