1ccc406f2Sjsing#!/bin/sh 2*dbacfe20Sbeck# $OpenBSD: test_server.sh,v 1.3 2023/07/03 05:31:56 beck Exp $ 3ccc406f2Sjsing 4ccc406f2Sjsingecho This starts a tls1 mode server using the DSA certificate in ./server.pem 5ccc406f2Sjsingecho Run ./testclient.sh in another window and type at it, you should 6ccc406f2Sjsingecho see the results of the ssl negotiation, and stuff you type in the client 7ccc406f2Sjsingecho should echo in this window 8ccc406f2Sjsingecho 9ccc406f2Sjsingecho 10*dbacfe20Sbeck${OPENSSL:-/usr/bin/openssl} s_server -key testdsa.key -cert testdsa.pem 11