File: testpem.bat

package info (click to toggle)
openssl097 0.9.7k-3.1
  • links: PTS
  • area: main
  • in suites: etch-m68k
  • size: 18,564 kB
  • ctags: 24,034
  • sloc: ansic: 178,335; asm: 19,384; perl: 17,782; makefile: 13,645; cpp: 4,379; sh: 2,687; lisp: 23
file content (32 lines) | stat: -rwxr-xr-x 638 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
@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