summaryrefslogtreecommitdiffstats
path: root/test/testssl.com
blob: 06c9f657a7fd4b448f526309e4ab725aa58e08ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
$! TESTSSL.COM
$
$	__arch := VAX
$	if f$getsyi("cpu") .ge. 128 then __arch := AXP
$	exe_dir := sys$disk:[-.'__arch'.exe.test]
$
$	copy/concatenate [-.certs]*.pem certs.tmp
$
$	write sys$output "test sslv2"
$	mcr 'exe_dir'ssltest -ssl2
$	if $severity .ne. 1 then goto exit3
$
$	write sys$output "test sslv2 with server authentication"
$	mcr 'exe_dir'ssltest -ssl2 -server_auth "-CAfile" certs.tmp
$	if $severity .ne. 1 then goto exit3
$
$	write sys$output "test sslv2 with client authentication"
$	mcr 'exe_dir'ssltest -ssl2 -client_auth "-CAfile" certs.tmp
$	if $severity .ne. 1 then goto exit3
$
$	write sys$output "test sslv2 with both client and server authentication"
$	mcr 'exe_dir'ssltest -ssl2 -server_auth -client_auth "-CAfile" certs.tmp
$	if $severity .ne. 1 then goto exit3
$
$	write sys$output "test sslv3"
$	mcr 'exe_dir'ssltest -ssl3
$	if $severity .ne. 1 then goto exit3
$
$	write sys$output "test sslv3 with server authentication"
$	mcr 'exe_dir'ssltest -ssl3 -server_auth "-CAfile" certs.tmp
$	if $severity .ne. 1 then goto exit3
$
$	write sys$output "test sslv3 with client authentication"
$	mcr 'exe_dir'ssltest -ssl3 -client_auth "-CAfile" certs.tmp
$	if $severity .ne. 1 then goto exit3
$
$	write sys$output "test sslv3 with both client and server authentication"
$	mcr 'exe_dir'ssltest -ssl3 -server_auth -client_auth "-CAfile" certs.tmp
$	if $severity .ne. 1 then goto exit3
$
$	write sys$output "test sslv2/sslv3"
$	mcr 'exe_dir'ssltest
$	if $severity .ne. 1 then goto exit3
$
$	write sys$output "test sslv2/sslv3 with server authentication"
$	mcr 'exe_dir'ssltest -server_auth "-CAfile" certs.tmp
$	if $severity .ne. 1 then goto exit3
$
$	write sys$output "test sslv2/sslv3 with client authentication"
$	mcr 'exe_dir'ssltest -client_auth "-CAfile" certs.tmp
$	if $severity .ne. 1 then goto exit3
$
$	write sys$output "test sslv2/sslv3 with both client and server authentication"
$	mcr 'exe_dir'ssltest -server_auth -client_auth "-CAfile" certs.tmp
$	if $severity .ne. 1 then goto exit3
$
$	RET = 1
$	goto exit
$ exit3:
$	RET = 3
$ exit:
$	delete certs.tmp;*
$	exit 'RET'