aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-08-22 19:13:06 -0400
committerJack Lloyd <[email protected]>2017-08-23 10:39:22 -0400
commit846aca009fb68260a06f219e500f3c0b1ad51c03 (patch)
tree3cb31459a5f4ec97172d783cdb57cdea309f5bbd
parente13b34a522188561758fa021c594b118e01347e1 (diff)
Fix TLS ciphersuite generator for ARIA
Not enabled due to inability to test
-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 = ''