diff options
author | cvs2svn <admin@example.com> | 1999-10-10 21:32:03 +0000 |
---|---|---|
committer | cvs2svn <admin@example.com> | 1999-10-10 21:32:03 +0000 |
commit | 14e61fef302fbc25ab63e38bd35445637ca68139 (patch) | |
tree | dae5e50679bccd1ed8d7d4041fbb9f3d96bbc98c /src/lib/libssl/test/testssl | |
parent | 3ef9529fbf0c1f8f1c9da1172e92ad3370d5fcfe (diff) | |
download | openbsd-OPENBSD_2_6_BASE.tar.gz openbsd-OPENBSD_2_6_BASE.tar.bz2 openbsd-OPENBSD_2_6_BASE.zip |
This commit was manufactured by cvs2git to create tag 'OPENBSD_2_6_BASE'.OPENBSD_2_6_BASE
Diffstat (limited to 'src/lib/libssl/test/testssl')
-rw-r--r-- | src/lib/libssl/test/testssl | 75 |
1 files changed, 0 insertions, 75 deletions
diff --git a/src/lib/libssl/test/testssl b/src/lib/libssl/test/testssl deleted file mode 100644 index 255ae5e976..0000000000 --- a/src/lib/libssl/test/testssl +++ /dev/null | |||
@@ -1,75 +0,0 @@ | |||
1 | #!/bin/sh | ||
2 | |||
3 | echo test sslv2 | ||
4 | ./ssltest -ssl2 || exit 1 | ||
5 | |||
6 | echo test sslv2 with server authentication | ||
7 | ./ssltest -ssl2 -server_auth -CApath ../certs || exit 1 | ||
8 | |||
9 | echo test sslv2 with client authentication | ||
10 | ./ssltest -ssl2 -client_auth -CApath ../certs || exit 1 | ||
11 | |||
12 | echo test sslv2 with both client and server authentication | ||
13 | ./ssltest -ssl2 -server_auth -client_auth -CApath ../certs || exit 1 | ||
14 | |||
15 | echo test sslv3 | ||
16 | ./ssltest -ssl3 || exit 1 | ||
17 | |||
18 | echo test sslv3 with server authentication | ||
19 | ./ssltest -ssl3 -server_auth -CApath ../certs || exit 1 | ||
20 | |||
21 | echo test sslv3 with client authentication | ||
22 | ./ssltest -ssl3 -client_auth -CApath ../certs || exit 1 | ||
23 | |||
24 | echo test sslv3 with both client and server authentication | ||
25 | ./ssltest -ssl3 -server_auth -client_auth -CApath ../certs || exit 1 | ||
26 | |||
27 | echo test sslv2/sslv3 | ||
28 | ./ssltest || exit 1 | ||
29 | |||
30 | echo test sslv2/sslv3 with server authentication | ||
31 | ./ssltest -server_auth -CApath ../certs || exit 1 | ||
32 | |||
33 | echo test sslv2/sslv3 with client authentication | ||
34 | ./ssltest -client_auth -CApath ../certs || exit 1 | ||
35 | |||
36 | echo test sslv2/sslv3 with both client and server authentication | ||
37 | ./ssltest -server_auth -client_auth -CApath ../certs || exit 1 | ||
38 | |||
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 | ||
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 | ||