mirror of
https://github.com/openssl/openssl.git
synced 2024-11-24 18:43:34 +08:00
d4d2f98c59
Win32 test batch file going again.
15 lines
480 B
Batchfile
Executable File
15 lines
480 B
Batchfile
Executable File
rem called by testenc
|
|
|
|
echo test %1 %2 %3 %4 %5 %6
|
|
%ssleay% %1 %2 %3 %4 %5 %6 -e -bufsize 113 -k test -in %input% -out %tmp1%
|
|
%ssleay% %1 %2 %3 %4 %5 %6 -d -bufsize 157 -k test -in %tmp1% -out %out1%
|
|
%cmp% %input% %out1%
|
|
if errorlevel 1 goto err
|
|
|
|
echo test base64 %1 %2 %3 %4 %5 %6
|
|
%ssleay% %1 %2 %3 %4 %5 %6 -a -e -bufsize 113 -k test -in %input% -out %tmp1%
|
|
%ssleay% %1 %2 %3 %4 %5 %6 -a -d -bufsize 157 -k test -in %tmp1% -out %out1%
|
|
%cmp% %input% %out1%
|
|
|
|
:err
|