]> git.ipfire.org Git - thirdparty/openssl.git/blame - ms/testenc.bat
Make the Windows test scripts consistent in their echoing
[thirdparty/openssl.git] / ms / testenc.bat
CommitLineData
d574d839 1@echo off\r
dfeab068 2echo start testenc\r
d574d839 3\r
e476f425 4path=..\ms;%path%\r
dfeab068 5set ssleay=%1%\r
e476f425
DSH
6set input=..\ms\testenc.bat\r
7set tmp1=..\ms\cipher.out\r
8set out1=..\ms\clear.out\r
9set cmp=perl ..\ms\cmp.pl\r
dfeab068
RE
10\r
11cd\r
12call tenc.bat enc\r
13if errorlevel 1 goto err\r
14\r
15call tenc.bat rc4\r
16if errorlevel 1 goto err\r
17\r
18call tenc.bat des-cfb\r
19if errorlevel 1 goto err\r
20\r
21call tenc.bat des-ede-cfb\r
22if errorlevel 1 goto err\r
23\r
24call tenc.bat des-ede3-cfb\r
25if errorlevel 1 goto err\r
26\r
27call tenc.bat des-ofb\r
28if errorlevel 1 goto err\r
29\r
30call tenc.bat des-ede-ofb\r
31if errorlevel 1 goto err\r
32\r
33call tenc.bat des-ede3-ofb\r
34if errorlevel 1 goto err\r
35\r
36call tenc.bat des-ecb\r
37if errorlevel 1 goto err\r
38\r
39call tenc.bat des-ede\r
40if errorlevel 1 goto err\r
41\r
42call tenc.bat des-ede3\r
43if errorlevel 1 goto err\r
44\r
45call tenc.bat des-cbc\r
46if errorlevel 1 goto err\r
47\r
48call tenc.bat des-ede-cbc\r
49if errorlevel 1 goto err\r
50\r
51call tenc.bat des-ede3-cbc\r
52if errorlevel 1 goto err\r
53\r
54call tenc.bat idea-ecb\r
55if errorlevel 1 goto err\r
56\r
57call tenc.bat idea-cfb\r
58if errorlevel 1 goto err\r
59\r
60call tenc.bat idea-ofb\r
61if errorlevel 1 goto err\r
62\r
63call tenc.bat idea-cbc\r
64if errorlevel 1 goto err\r
65\r
66call tenc.bat rc2-ecb\r
67if errorlevel 1 goto err\r
68\r
69call tenc.bat rc2-cfb\r
70if errorlevel 1 goto err\r
71\r
72call tenc.bat rc2-ofb\r
73if errorlevel 1 goto err\r
74\r
75call tenc.bat rc2-cbc\r
76if errorlevel 1 goto err\r
77\r
78call tenc.bat bf-ecb\r
79if errorlevel 1 goto err\r
80\r
81call tenc.bat bf-cfb\r
82if errorlevel 1 goto err\r
83\r
84call tenc.bat bf-ofb\r
85if errorlevel 1 goto err\r
86\r
87call tenc.bat bf-cbc\r
88if errorlevel 1 goto err\r
89\r
90echo OK\r
91del %out1%\r
92del %tmp1%\r
93:err\r
94\r