diff options
author | jsing <> | 2014-08-26 17:50:07 +0000 |
---|---|---|
committer | jsing <> | 2014-08-26 17:50:07 +0000 |
commit | ad993f95f7233dab030ff796264396c977cb3248 (patch) | |
tree | fdf80e64b4b68946a21ff873801e9c17656a9878 /src/regress/usr.bin/openssl/test_server.sh | |
parent | f3755acd5513f85ff734de6a822b6f804d3776ce (diff) | |
download | openbsd-ad993f95f7233dab030ff796264396c977cb3248.tar.gz openbsd-ad993f95f7233dab030ff796264396c977cb3248.tar.bz2 openbsd-ad993f95f7233dab030ff796264396c977cb3248.zip |
Update regress to follow openssl(1) move.
Diffstat (limited to 'src/regress/usr.bin/openssl/test_server.sh')
-rw-r--r-- | src/regress/usr.bin/openssl/test_server.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/regress/usr.bin/openssl/test_server.sh b/src/regress/usr.bin/openssl/test_server.sh new file mode 100644 index 0000000000..b4fd2560df --- /dev/null +++ b/src/regress/usr.bin/openssl/test_server.sh | |||
@@ -0,0 +1,10 @@ | |||
1 | #!/bin/sh | ||
2 | # $OpenBSD: test_server.sh,v 1.1 2014/08/26 17:50:07 jsing Exp $ | ||
3 | |||
4 | echo This starts a tls1 mode server using the DSA certificate in ./server.pem | ||
5 | echo Run ./testclient.sh in another window and type at it, you should | ||
6 | echo see the results of the ssl negotiation, and stuff you type in the client | ||
7 | echo should echo in this window | ||
8 | echo | ||
9 | echo | ||
10 | /usr/bin/openssl s_server -tls1 -key testdsa.key -cert testdsa.pem | ||