From 4c10be33ecdefee53224132e92a1575641a9aeea Mon Sep 17 00:00:00 2001 From: tb Date: Sat, 5 Feb 2022 18:36:08 +0000 Subject: [PATCH] Adapt appstest.sh for the new TLS_ names. --- regress/usr.bin/openssl/appstest.sh | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/regress/usr.bin/openssl/appstest.sh b/regress/usr.bin/openssl/appstest.sh index 3d4562a16a3..d708ae28b5b 100755 --- a/regress/usr.bin/openssl/appstest.sh +++ b/regress/usr.bin/openssl/appstest.sh @@ -1,6 +1,6 @@ #!/bin/sh # -# $OpenBSD: appstest.sh,v 1.53 2021/10/25 07:17:14 tb Exp $ +# $OpenBSD: appstest.sh,v 1.54 2022/02/05 18:36:08 tb Exp $ # # Copyright (c) 2016 Kinichiro Inoguchi # @@ -1538,14 +1538,10 @@ function test_sc_all_cipher { ciphers=$user1_dir/ciphers_${sc}_${ver} if [ $ver = "tls1_3" ] ; then - if [ $c_id = "0" ] ; then - echo "AEAD-AES256-GCM-SHA384" > $ciphers - echo "AEAD-CHACHA20-POLY1305-SHA256" >> $ciphers - echo "AEAD-AES128-GCM-SHA256" >> $ciphers - else - echo "TLS_AES_256_GCM_SHA384" > $ciphers - echo "TLS_CHACHA20_POLY1305_SHA256" >> $ciphers - echo "TLS_AES_128_GCM_SHA256" >> $ciphers + echo "TLS_AES_256_GCM_SHA384" > $ciphers + echo "TLS_CHACHA20_POLY1305_SHA256" >> $ciphers + echo "TLS_AES_128_GCM_SHA256" >> $ciphers + if [ $c_id != "0" ] ; then copt=ciphersuites fi else -- 2.20.1