diff options
author | lloyd <[email protected]> | 2013-04-11 16:22:10 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2013-04-11 16:22:10 +0000 |
commit | 5b469ea52a89f9d73c33ec000e8ae571b3fd44ce (patch) | |
tree | f75a133fc5d3129f214bec762d7a596fb5cee844 /src/build-data | |
parent | 3a4ed0a30a4e055205f871be427e39306f0204b2 (diff) |
Add support for AEAD modes in TLS. Add GCM ciphersuites.
Diffstat (limited to 'src/build-data')
-rwxr-xr-x | src/build-data/scripts/tls_suite_info.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/build-data/scripts/tls_suite_info.py b/src/build-data/scripts/tls_suite_info.py index bacb68bca..2cc38a1ab 100755 --- a/src/build-data/scripts/tls_suite_info.py +++ b/src/build-data/scripts/tls_suite_info.py @@ -121,7 +121,7 @@ def main(args = None): weird_crypto = ['ARIA', 'IDEA'] static_dh = ['ECDH_ECDSA', 'ECDH_RSA', 'DH_DSS', 'DH_RSA'] protocol_goop = ['SCSV', 'KRB5'] - just_not_yet = ['RSA_PSK', 'CCM', 'GCM'] + just_not_yet = ['RSA_PSK', 'CCM'] not_supported = weak_crypto + weird_crypto + static_dh + protocol_goop + just_not_yet |