blob: 00e5a853800ea1ef9ff0a9ad91dbd3aa0c60d3d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh
# $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 ./testserver.sh. You should start the server first.
echo
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
|