mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-23 21:01:03 +00:00
Document that ECDH and FFDH are excluded only temporarily
This commit is contained in:
parent
61b7f61d5e
commit
b8fe06820b
|
@ -130,6 +130,8 @@ where each argument takes each possible value at least once.'''
|
||||||
# Regex of macro names to exclude.
|
# Regex of macro names to exclude.
|
||||||
excluded_name_re = re.compile('_(?:GET|IS|OF)_|_(?:BASE|FLAG|MASK)\Z')
|
excluded_name_re = re.compile('_(?:GET|IS|OF)_|_(?:BASE|FLAG|MASK)\Z')
|
||||||
# Additional excluded macros.
|
# Additional excluded macros.
|
||||||
|
# PSA_ALG_ECDH and PSA_ALG_FFDH are excluded for now as the script
|
||||||
|
# currently doesn't support them.
|
||||||
excluded_names = set(['PSA_ALG_AEAD_WITH_DEFAULT_TAG_LENGTH',
|
excluded_names = set(['PSA_ALG_AEAD_WITH_DEFAULT_TAG_LENGTH',
|
||||||
'PSA_ALG_FULL_LENGTH_MAC',
|
'PSA_ALG_FULL_LENGTH_MAC',
|
||||||
'PSA_ALG_ECDH',
|
'PSA_ALG_ECDH',
|
||||||
|
@ -160,6 +162,8 @@ where each argument takes each possible value at least once.'''
|
||||||
def add_test_case_line(self, function, argument):
|
def add_test_case_line(self, function, argument):
|
||||||
'''Parse a test case data line, looking for algorithm metadata tests.'''
|
'''Parse a test case data line, looking for algorithm metadata tests.'''
|
||||||
if function.endswith('_algorithm'):
|
if function.endswith('_algorithm'):
|
||||||
|
# As above, ECDH and FFDH algorithms are excluded for now.
|
||||||
|
# Support for them will be added in the future.
|
||||||
if 'ECDH' in argument or 'FFDH' in argument:
|
if 'ECDH' in argument or 'FFDH' in argument:
|
||||||
return
|
return
|
||||||
self.algorithms.add(argument)
|
self.algorithms.add(argument)
|
||||||
|
|
Loading…
Reference in a new issue