diff options
author | Kurt Roeckx <kurt@roeckx.be> | 2020-02-23 11:06:32 +0100 |
---|---|---|
committer | Kurt Roeckx <kurt@roeckx.be> | 2020-06-27 08:41:18 +0200 |
commit | 526f1f1acab4fe96f618ab785a5f2ecabf0035d5 (patch) | |
tree | f01c7ead36fa5e94d5d2d658948eac7a35299fbb /test | |
parent | TEST: Add TODO segments in test/recipes/15-test_genec.t (diff) | |
download | openssl-526f1f1acab4fe96f618ab785a5f2ecabf0035d5.tar.xz openssl-526f1f1acab4fe96f618ab785a5f2ecabf0035d5.zip |
Fix syntax of cipher string
Reviewed-by: Tim Hudson <tjh@openssl.org>
GH: #10787
Diffstat (limited to 'test')
-rw-r--r-- | test/recipes/70-test_sslsigalgs.t | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/test/recipes/70-test_sslsigalgs.t b/test/recipes/70-test_sslsigalgs.t index f3b8ffb6b8..c9dbc9cc68 100644 --- a/test/recipes/70-test_sslsigalgs.t +++ b/test/recipes/70-test_sslsigalgs.t @@ -142,8 +142,8 @@ SKIP: { # security level 1 $proxy->clear(); $testtype = NO_SIG_ALGS_EXT; - $proxy->clientflags("-no_tls1_3 -cipher DEFAULT\@SECLEVEL=1"); - $proxy->ciphers("ECDHE-RSA-AES128-SHA\@SECLEVEL=1"); + $proxy->clientflags("-no_tls1_3 -cipher DEFAULT:\@SECLEVEL=1"); + $proxy->ciphers("ECDHE-RSA-AES128-SHA:\@SECLEVEL=1"); $proxy->start(); ok(TLSProxy::Message->success, "No TLSv1.2 sigalgs seclevel 1"); @@ -152,8 +152,8 @@ SKIP: { # server level 2. $proxy->clear(); $testtype = NO_SIG_ALGS_EXT; - $proxy->clientflags("-tls1_2 -cipher DEFAULT\@SECLEVEL=1"); - $proxy->ciphers("DEFAULT\@SECLEVEL=2"); + $proxy->clientflags("-tls1_2 -cipher DEFAULT:\@SECLEVEL=1"); + $proxy->ciphers("DEFAULT:\@SECLEVEL=2"); $proxy->start(); ok(TLSProxy::Message->fail, "No TLSv1.2 sigalgs server seclevel 2"); @@ -162,8 +162,8 @@ SKIP: { # server level 1. $proxy->clear(); $testtype = NO_SIG_ALGS_EXT; - $proxy->clientflags("-tls1_2 -cipher DEFAULT\@SECLEVEL=2"); - $proxy->ciphers("DEFAULT\@SECLEVEL=1"); + $proxy->clientflags("-tls1_2 -cipher DEFAULT:\@SECLEVEL=2"); + $proxy->ciphers("DEFAULT:\@SECLEVEL=1"); $proxy->start(); ok(TLSProxy::Message->fail, "No TLSv1.2 sigalgs client seclevel 2"); |