Stop testing tls 1.0 and 1.1
authorbeck <beck@openbsd.org>
Mon, 3 Jul 2023 05:31:56 +0000 (05:31 +0000)
committerbeck <beck@openbsd.org>
Mon, 3 Jul 2023 05:31:56 +0000 (05:31 +0000)
They have gone behind the barn.

regress/usr.bin/openssl/appstest.sh
regress/usr.bin/openssl/test_client.sh
regress/usr.bin/openssl/test_server.sh

index 859005a..37842ec 100755 (executable)
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# $OpenBSD: appstest.sh,v 1.56 2023/04/26 09:07:59 tb Exp $
+# $OpenBSD: appstest.sh,v 1.57 2023/07/03 05:31:56 beck Exp $
 #
 # Copyright (c) 2016 Kinichiro Inoguchi <inoguchi@openbsd.org>
 #
@@ -1760,10 +1760,6 @@ function test_server_client {
        sleep 1
 
        # test by protocol version
-       if [ "$other_openssl_version" = "OpenSSL 1." ] ; then
-       test_sc_by_protocol_version $sc tls1   'Protocol  : TLSv1$'    $c_id
-       test_sc_by_protocol_version $sc tls1_1 'Protocol  : TLSv1\.1$' $c_id
-       fi
        test_sc_by_protocol_version $sc tls1_2 'Protocol  : TLSv1\.2$' $c_id
        test_sc_by_protocol_version $sc tls1_3 'Protocol  : TLSv1\.3$' $c_id
 
index fed2baa..00e5a85 100644 (file)
@@ -1,5 +1,5 @@
 #!/bin/sh
-#      $OpenBSD: test_client.sh,v 1.2 2018/02/06 02:31:13 tb Exp $
+#      $OpenBSD: test_client.sh,v 1.3 2023/07/03 05:31:56 beck Exp $
 
 echo
 echo This starts a tls1 mode client to talk to the server run by 
@@ -9,4 +9,4 @@ echo type in this window after ssl negotiation and your output should
 echo be echoed by the server. 
 echo
 echo
-${OPENSSL:-/usr/bin/openssl} s_client -tls1
+${OPENSSL:-/usr/bin/openssl} s_client
index ec4a78a..8da6602 100644 (file)
@@ -1,5 +1,5 @@
 #!/bin/sh
-#      $OpenBSD: test_server.sh,v 1.2 2018/02/06 02:31:13 tb Exp $
+#      $OpenBSD: test_server.sh,v 1.3 2023/07/03 05:31:56 beck Exp $
 
 echo This starts a tls1 mode server using the DSA certificate in ./server.pem
 echo Run ./testclient.sh in another window and type at it, you should 
@@ -7,4 +7,4 @@ echo see the results of the ssl negotiation, and stuff you type in the client
 echo should echo in this window
 echo
 echo
-${OPENSSL:-/usr/bin/openssl} s_server -tls1 -key testdsa.key -cert testdsa.pem
+${OPENSSL:-/usr/bin/openssl} s_server -key testdsa.key -cert testdsa.pem