1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-28 00:21:48 +03:00

Merge branch 'development' into buffer-sharing-merge

This commit is contained in:
David Horstmann
2024-03-12 15:02:28 +00:00
265 changed files with 14538 additions and 6022 deletions

View File

@ -82,7 +82,7 @@ def automatic_dependencies(*expressions: str) -> List[str]:
"""
used = set()
for expr in expressions:
used.update(re.findall(r'PSA_(?:ALG|ECC_FAMILY|KEY_TYPE)_\w+', expr))
used.update(re.findall(r'PSA_(?:ALG|ECC_FAMILY|DH_FAMILY|KEY_TYPE)_\w+', expr))
used.difference_update(SYMBOLS_WITHOUT_DEPENDENCY)
return sorted(psa_want_symbol(name) for name in used)