]> git.ipfire.org Git - thirdparty/openssl.git/blame - ms/tenc.bat
ms/: update do_win64*.bat and remove redundant mingw32.bat.
[thirdparty/openssl.git] / ms / tenc.bat
CommitLineData
dac40f87
DSH
1rem called by testenc
2
3echo test %1 %2 %3 %4 %5 %6
4%ssleay% %1 %2 %3 %4 %5 %6 -e -bufsize 113 -k test -in %input% -out %tmp1%
5%ssleay% %1 %2 %3 %4 %5 %6 -d -bufsize 157 -k test -in %tmp1% -out %out1%
6%cmp% %input% %out1%
7if errorlevel 1 goto err
8
9echo test base64 %1 %2 %3 %4 %5 %6
10%ssleay% %1 %2 %3 %4 %5 %6 -a -e -bufsize 113 -k test -in %input% -out %tmp1%
11%ssleay% %1 %2 %3 %4 %5 %6 -a -d -bufsize 157 -k test -in %tmp1% -out %out1%
12%cmp% %input% %out1%
13
14:err