Remove building with NOCRYPTO option
[minix.git] / crypto / external / bsd / openssl / dist / test / testssl
blob261097beb048442f37cf3d801b551560380d853f
1 #!/bin/sh
3 if [ "$1" = "" ]; then
4 key=../apps/server.pem
5 else
6 key="$1"
7 fi
8 if [ "$2" = "" ]; then
9 cert=../apps/server.pem
10 else
11 cert="$2"
13 ssltest="../util/shlib_wrap.sh ./ssltest -key $key -cert $cert -c_key $key -c_cert $cert"
15 if ../util/shlib_wrap.sh ../apps/openssl x509 -in $cert -text -noout | fgrep 'DSA Public Key' >/dev/null; then
16 dsa_cert=YES
17 else
18 dsa_cert=NO
21 if [ "$3" = "" ]; then
22 CA="-CApath ../certs"
23 else
24 CA="-CAfile $3"
27 if [ "$4" = "" ]; then
28 extra=""
29 else
30 extra="$4"
33 #############################################################################
35 echo test sslv2
36 $ssltest -ssl2 $extra || exit 1
38 echo test sslv2 with server authentication
39 $ssltest -ssl2 -server_auth $CA $extra || exit 1
41 if [ $dsa_cert = NO ]; then
42 echo test sslv2 with client authentication
43 $ssltest -ssl2 -client_auth $CA $extra || exit 1
45 echo test sslv2 with both client and server authentication
46 $ssltest -ssl2 -server_auth -client_auth $CA $extra || exit 1
49 echo test sslv3
50 $ssltest -ssl3 $extra || exit 1
52 echo test sslv3 with server authentication
53 $ssltest -ssl3 -server_auth $CA $extra || exit 1
55 echo test sslv3 with client authentication
56 $ssltest -ssl3 -client_auth $CA $extra || exit 1
58 echo test sslv3 with both client and server authentication
59 $ssltest -ssl3 -server_auth -client_auth $CA $extra || exit 1
61 echo test sslv2/sslv3
62 $ssltest $extra || exit 1
64 echo test sslv2/sslv3 with server authentication
65 $ssltest -server_auth $CA $extra || exit 1
67 echo test sslv2/sslv3 with client authentication
68 $ssltest -client_auth $CA $extra || exit 1
70 echo test sslv2/sslv3 with both client and server authentication
71 $ssltest -server_auth -client_auth $CA $extra || exit 1
73 echo test sslv2 via BIO pair
74 $ssltest -bio_pair -ssl2 $extra || exit 1
76 echo test sslv2 with server authentication via BIO pair
77 $ssltest -bio_pair -ssl2 -server_auth $CA $extra || exit 1
79 if [ $dsa_cert = NO ]; then
80 echo test sslv2 with client authentication via BIO pair
81 $ssltest -bio_pair -ssl2 -client_auth $CA $extra || exit 1
83 echo test sslv2 with both client and server authentication via BIO pair
84 $ssltest -bio_pair -ssl2 -server_auth -client_auth $CA $extra || exit 1
87 echo test sslv3 via BIO pair
88 $ssltest -bio_pair -ssl3 $extra || exit 1
90 echo test sslv3 with server authentication via BIO pair
91 $ssltest -bio_pair -ssl3 -server_auth $CA $extra || exit 1
93 echo test sslv3 with client authentication via BIO pair
94 $ssltest -bio_pair -ssl3 -client_auth $CA $extra || exit 1
96 echo test sslv3 with both client and server authentication via BIO pair
97 $ssltest -bio_pair -ssl3 -server_auth -client_auth $CA $extra || exit 1
99 echo test sslv2/sslv3 via BIO pair
100 $ssltest $extra || exit 1
102 if [ $dsa_cert = NO ]; then
103 echo 'test sslv2/sslv3 w/o (EC)DHE via BIO pair'
104 $ssltest -bio_pair -no_dhe -no_ecdhe $extra || exit 1
107 echo test sslv2/sslv3 with 1024bit DHE via BIO pair
108 $ssltest -bio_pair -dhe1024dsa -v $extra || exit 1
110 echo test sslv2/sslv3 with server authentication
111 $ssltest -bio_pair -server_auth $CA $extra || exit 1
113 echo test sslv2/sslv3 with client authentication via BIO pair
114 $ssltest -bio_pair -client_auth $CA $extra || exit 1
116 echo test sslv2/sslv3 with both client and server authentication via BIO pair
117 $ssltest -bio_pair -server_auth -client_auth $CA $extra || exit 1
119 echo test sslv2/sslv3 with both client and server authentication via BIO pair and app verify
120 $ssltest -bio_pair -server_auth -client_auth -app_verify $CA $extra || exit 1
122 test_cipher() {
123 _cipher=$1
124 echo "Testing $_cipher"
125 prot=""
126 if [ $2 = "SSLv3" ] ; then
127 prot="-ssl3"
129 $ssltest -cipher $_cipher $prot
130 if [ $? -ne 0 ] ; then
131 echo "Failed $_cipher"
132 exit 1
136 echo "Testing ciphersuites"
137 for protocol in TLSv1.2 SSLv3; do
138 echo "Testing ciphersuites for $protocol"
139 for cipher in `../util/shlib_wrap.sh ../apps/openssl ciphers "RSA+$protocol" | tr ':' ' '`; do
140 test_cipher $cipher $protocol
141 done
142 if ../util/shlib_wrap.sh ../apps/openssl no-dh; then
143 echo "skipping RSA+DHE tests"
144 else
145 for cipher in `../util/shlib_wrap.sh ../apps/openssl ciphers "EDH+aRSA+$protocol:-EXP" | tr ':' ' '`; do
146 test_cipher $cipher $protocol
147 done
148 echo "testing connection with weak DH, expecting failure"
149 if [ $protocol = "SSLv3" ] ; then
150 $ssltest -cipher EDH -dhe512 -ssl3
151 else
152 $ssltest -cipher EDH -dhe512
154 if [ $? -eq 0 ]; then
155 echo "FAIL: connection with weak DH succeeded"
156 exit 1
159 if ../util/shlib_wrap.sh ../apps/openssl no-ec; then
160 echo "skipping RSA+ECDHE tests"
161 else
162 for cipher in `../util/shlib_wrap.sh ../apps/openssl ciphers "EECDH+aRSA+$protocol:-EXP" | tr ':' ' '`; do
163 test_cipher $cipher $protocol
164 done
166 done
168 #############################################################################
170 if ../util/shlib_wrap.sh ../apps/openssl no-dh; then
171 echo skipping anonymous DH tests
172 else
173 echo test tls1 with 1024bit anonymous DH, multiple handshakes
174 $ssltest -v -bio_pair -tls1 -cipher ADH -dhe1024dsa -num 10 -f -time $extra || exit 1
177 if ../util/shlib_wrap.sh ../apps/openssl no-rsa; then
178 echo skipping RSA tests
179 else
180 echo 'test tls1 with 1024bit RSA, no (EC)DHE, multiple handshakes'
181 ../util/shlib_wrap.sh ./ssltest -v -bio_pair -tls1 -cert ../apps/server2.pem -no_dhe -no_ecdhe -num 10 -f -time $extra || exit 1
183 if ../util/shlib_wrap.sh ../apps/openssl no-dh; then
184 echo skipping RSA+DHE tests
185 else
186 echo test tls1 with 1024bit RSA, 1024bit DHE, multiple handshakes
187 ../util/shlib_wrap.sh ./ssltest -v -bio_pair -tls1 -cert ../apps/server2.pem -dhe1024dsa -num 10 -f -time $extra || exit 1
191 echo test tls1 with PSK
192 $ssltest -tls1 -cipher PSK -psk abc123 $extra || exit 1
194 echo test tls1 with PSK via BIO pair
195 $ssltest -bio_pair -tls1 -cipher PSK -psk abc123 $extra || exit 1
197 if ../util/shlib_wrap.sh ../apps/openssl no-srp; then
198 echo skipping SRP tests
199 else
200 echo test tls1 with SRP
201 $ssltest -tls1 -cipher SRP -srpuser test -srppass abc123 || exit 1
203 echo test tls1 with SRP via BIO pair
204 $ssltest -bio_pair -tls1 -cipher SRP -srpuser test -srppass abc123 || exit 1
206 echo test tls1 with SRP auth
207 $ssltest -tls1 -cipher aSRP -srpuser test -srppass abc123 || exit 1
209 echo test tls1 with SRP auth via BIO pair
210 $ssltest -bio_pair -tls1 -cipher aSRP -srpuser test -srppass abc123 || exit 1
213 exit 0