mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-02-20 21:39:54 +00:00
generate_psa_tests: remove checks for DH's LEGACY symbols
Signed-off-by: Valerio Setti <valerio.setti@nordicsemi.no>
This commit is contained in:
parent
dfed278218
commit
3a96227706
@ -121,14 +121,7 @@ def tweak_key_pair_dependency(dep: str, usage: str):
|
||||
symbols according to the required usage.
|
||||
"""
|
||||
ret_list = list()
|
||||
# Note: this LEGACY replacement DH is temporary and it's going
|
||||
# to be aligned with ECC one in #7773.
|
||||
if dep.endswith('DH_KEY_PAIR'):
|
||||
legacy = dep
|
||||
legacy = re.sub(r'KEY_PAIR\Z', r'KEY_PAIR_LEGACY', legacy)
|
||||
legacy = re.sub(r'PSA_WANT', r'MBEDTLS_PSA_WANT', legacy)
|
||||
ret_list.append(legacy)
|
||||
elif dep.endswith('KEY_PAIR'):
|
||||
if dep.endswith('KEY_PAIR'):
|
||||
if usage == "BASIC":
|
||||
# BASIC automatically includes IMPORT and EXPORT for test purposes (see
|
||||
# config_psa.h).
|
||||
|
Loading…
x
Reference in New Issue
Block a user