mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-03-23 22:45:22 +00:00
Abbreviate algorithms in test descriptions
Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
This commit is contained in:
parent
08966e6fbc
commit
ff9629f92d
|
@ -354,7 +354,8 @@ class StorageFormat:
|
||||||
# For now, we don't have information on the compatibility of key
|
# For now, we don't have information on the compatibility of key
|
||||||
# types and algorithms. So we just test the encoding of algorithms,
|
# types and algorithms. So we just test the encoding of algorithms,
|
||||||
# and not that operations can be performed with them.
|
# and not that operations can be performed with them.
|
||||||
descr = alg
|
descr = re.sub(r'PSA_ALG_', r'', alg)
|
||||||
|
descr = re.sub(r',', r', ', re.sub(r' +', r'', descr))
|
||||||
usage = 'PSA_KEY_USAGE_EXPORT'
|
usage = 'PSA_KEY_USAGE_EXPORT'
|
||||||
key1 = StorageKey(version=self.version,
|
key1 = StorageKey(version=self.version,
|
||||||
id=1, lifetime=0x00000001,
|
id=1, lifetime=0x00000001,
|
||||||
|
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue