tencce.bat 737 B

12345678910111213141516171819
  1. rem called by testencce
  2. echo test %1 %2 %3 %4 %5 %6
  3. cecopy %input% CE:\OpenSSL
  4. cerun CE:\OpenSSL\%ssleay% %1 %2 %3 %4 %5 %6 -e -bufsize 113 -k test -in \OpenSSL\%input% -out \OpenSSL\%tmp1%
  5. cerun CE:\OpenSSL\%ssleay% %1 %2 %3 %4 %5 %6 -d -bufsize 157 -k test -in \OpenSSL\%tmp1% -out \OpenSSL\%out1%
  6. del %out1% >nul 2>&1
  7. cecopy CE:\OpenSSL\%out1% .
  8. %cmp% %input% %out1%
  9. if errorlevel 1 goto err
  10. echo test base64 %1 %2 %3 %4 %5 %6
  11. cerun CE:\OpenSSL\%ssleay% %1 %2 %3 %4 %5 %6 -a -e -bufsize 113 -k test -in \OpenSSL\%input% -out \OpenSSL\%tmp1%
  12. cerun CE:\OpenSSL\%ssleay% %1 %2 %3 %4 %5 %6 -a -d -bufsize 157 -k test -in \OpenSSL\%tmp1% -out \OpenSSL\%out1%
  13. del %out1% >nul 2>&1
  14. cecopy CE:\OpenSSL\%out1% .
  15. %cmp% %input% %out1%
  16. :err