diff options
Diffstat (limited to 'src/lib/libssl/test/testssl')
-rw-r--r-- | src/lib/libssl/test/testssl | 37 |
1 files changed, 36 insertions, 1 deletions
diff --git a/src/lib/libssl/test/testssl b/src/lib/libssl/test/testssl index f115adb8e1..255ae5e976 100644 --- a/src/lib/libssl/test/testssl +++ b/src/lib/libssl/test/testssl | |||
@@ -36,5 +36,40 @@ echo test sslv2/sslv3 with client authentication | |||
36 | echo test sslv2/sslv3 with both client and server authentication | 36 | echo test sslv2/sslv3 with both client and server authentication |
37 | ./ssltest -server_auth -client_auth -CApath ../certs || exit 1 | 37 | ./ssltest -server_auth -client_auth -CApath ../certs || exit 1 |
38 | 38 | ||
39 | exit 0 | 39 | echo test sslv2 via BIO pair |
40 | ./ssltest -bio_pair -ssl2 || exit 1 | ||
41 | |||
42 | echo test sslv2 with server authentication via BIO pair | ||
43 | ./ssltest -bio_pair -ssl2 -server_auth -CApath ../certs || exit 1 | ||
44 | |||
45 | echo test sslv2 with client authentication via BIO pair | ||
46 | ./ssltest -bio_pair -ssl2 -client_auth -CApath ../certs || exit 1 | ||
47 | |||
48 | echo test sslv2 with both client and server authentication via BIO pair | ||
49 | ./ssltest -bio_pair -ssl2 -server_auth -client_auth -CApath ../certs || exit 1 | ||
50 | |||
51 | echo test sslv3 via BIO pair | ||
52 | ./ssltest -bio_pair -ssl3 || exit 1 | ||
53 | |||
54 | echo test sslv3 with server authentication via BIO pair | ||
55 | ./ssltest -bio_pair -ssl3 -server_auth -CApath ../certs || exit 1 | ||
56 | |||
57 | echo test sslv3 with client authentication via BIO pair | ||
58 | ./ssltest -bio_pair -ssl3 -client_auth -CApath ../certs || exit 1 | ||
59 | |||
60 | echo test sslv3 with both client and server authentication via BIO pair | ||
61 | ./ssltest -bio_pair -ssl3 -server_auth -client_auth -CApath ../certs || exit 1 | ||
40 | 62 | ||
63 | echo test sslv2/sslv3 via BIO pair | ||
64 | ./ssltest || exit 1 | ||
65 | |||
66 | echo test sslv2/sslv3 with server authentication | ||
67 | ./ssltest -bio_pair -server_auth -CApath ../certs || exit 1 | ||
68 | |||
69 | echo test sslv2/sslv3 with client authentication via BIO pair | ||
70 | ./ssltest -bio_pair -client_auth -CApath ../certs || exit 1 | ||
71 | |||
72 | echo test sslv2/sslv3 with both client and server authentication via BIO pair | ||
73 | ./ssltest -bio_pair -server_auth -client_auth -CApath ../certs || exit 1 | ||
74 | |||
75 | exit 0 | ||