diff options
author | Jack Lloyd <[email protected]> | 2018-06-14 11:59:15 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2018-06-14 11:59:15 -0400 |
commit | 6dce31a9c6ea81e594e9239290ccb1c427ee5e29 (patch) | |
tree | 8538691250c338d22e8d6cfd43870344a10c6711 /src/scripts | |
parent | 071d6a9560365fd13dd68af66e84e80b3d7d7e37 (diff) |
Add 192-bit Suite B policy
Since 128-bit policy is actually not even allowed since 2015.
Diffstat (limited to 'src/scripts')
-rwxr-xr-x | src/scripts/test_cli.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/scripts/test_cli.py b/src/scripts/test_cli.py index ea5808e7c..f8170fd90 100755 --- a/src/scripts/test_cli.py +++ b/src/scripts/test_cli.py @@ -252,7 +252,7 @@ def cli_timing_test_tests(): logging.error("Unexpected output in timing_test %s: %s", suite, line) def cli_tls_ciphersuite_tests(): - policies = ['default', 'suiteb', 'strict', 'all'] + policies = ['default', 'suiteb_128', 'suiteb_192', 'strict', 'all'] versions = ['tls1.0', 'tls1.1', 'tls1.2'] @@ -261,7 +261,7 @@ def cli_tls_ciphersuite_tests(): for policy in policies: for version in versions: - if policy in ['suiteb', 'strict'] and version != 'tls1.2': + if policy in ['suiteb_128', 'suiteb_192', 'strict'] and version != 'tls1.2': continue output = test_cli("tls_ciphers", ["--version=" + version, "--policy=" + policy], None).split('\n') |