~mmach/netext73/isl

« back to all changes in this revision

Viewing changes to ms/tencce.bat

  • Committer: mmach
  • Date: 2019-05-14 07:37:06 UTC
  • Revision ID: netbit73@gmail.com-20190514073706-nt6iq2m3597se19c
0.21

Show diffs side-by-side

added added

removed removed

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