tenc.bat 480 B

1234567891011121314
  1. rem called by testenc
  2. echo test %1 %2 %3 %4 %5 %6
  3. %ssleay% %1 %2 %3 %4 %5 %6 -e -bufsize 113 -k test -in %input% -out %tmp1%
  4. %ssleay% %1 %2 %3 %4 %5 %6 -d -bufsize 157 -k test -in %tmp1% -out %out1%
  5. %cmp% %input% %out1%
  6. if errorlevel 1 goto err
  7. echo test base64 %1 %2 %3 %4 %5 %6
  8. %ssleay% %1 %2 %3 %4 %5 %6 -a -e -bufsize 113 -k test -in %input% -out %tmp1%
  9. %ssleay% %1 %2 %3 %4 %5 %6 -a -d -bufsize 157 -k test -in %tmp1% -out %out1%
  10. %cmp% %input% %out1%
  11. :err