They have gone behind the barn.
#!/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>
#
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
#!/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
echo be echoed by the server.
echo
echo
-${OPENSSL:-/usr/bin/openssl} s_client -tls1
+${OPENSSL:-/usr/bin/openssl} s_client
#!/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
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