https://github.com/openssl/openssl
Raw File
Tip revision: 5dd94f1847c744929a3bd24819f1c99644bb18c7 authored by Matt Caswell on 03 May 2016, 13:46:41 UTC
Prepare for 1.0.2h release
Tip revision: 5dd94f1
testpem.bat
@echo off
set ssleay=%1%
set tmp1=pem.out
set cmp=fc.exe

call tpem.bat crl ..\test\testcrl.pem
if errorlevel 1 goto err

call tpem.bat pkcs7 ..\test\testp7.pem
if errorlevel 1 goto err

call tpem.bat req ..\test\testreq2.pem
if errorlevel 1 goto err

call tpem.bat rsa ..\test\testrsa.pem
if errorlevel 1 goto err

call tpem.bat x509 ..\test\testx509.pem
if errorlevel 1 goto err

call tpem.bat x509 ..\test\v3-cert1.pem
if errorlevel 1 goto err

call tpem.bat x509 ..\test\v3-cert1.pem
if errorlevel 1 goto err

call tpem.bat sess_id ..\test\testsid.pem
if errorlevel 1 goto err

echo OK
del %tmp1%
:err
back to top