aboutsummaryrefslogtreecommitdiffstats
path: root/src/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'src/scripts')
-rwxr-xr-xsrc/scripts/tls_suite_info.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/scripts/tls_suite_info.py b/src/scripts/tls_suite_info.py
index ce069e250..0bf70873a 100755
--- a/src/scripts/tls_suite_info.py
+++ b/src/scripts/tls_suite_info.py
@@ -63,7 +63,7 @@ def to_ciphersuite_info(code, name):
'CAMELLIA': ('Camellia',None),
'AES': ('AES',None),
'SEED': ('SEED',16),
- 'ARIA': ('ARIA',16),
+ 'ARIA': ('ARIA',None),
}
tls_to_botan_names = {
@@ -111,7 +111,7 @@ def to_ciphersuite_info(code, name):
if cipher_keylen is None:
cipher_keylen = int(cipher[1]) / 8
- if cipher_algo in ['AES', 'Camellia']:
+ if cipher_algo in ['AES', 'Camellia', 'ARIA']:
cipher_algo += '-%d' % (cipher_keylen*8)
modestr = ''