home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 July / PCWorld_1999-07_cd.bin / 602 / ISLITE / DISK1 / data1.cab / INTERSRV_TARGET / Make_key.bat next >
DOS Batch File  |  1999-06-02  |  803b  |  29 lines

  1. @echo off
  2.  
  3. choice /C:AN Mßte sprßvn∞ vypln∞nΘ informace v konfiguraΦnφm souboru ssl_info.cfg
  4. if ERRORLEVEL==2 goto editace
  5. if ERRORLEVEL==1 goto start
  6.  
  7. :editace
  8. edit ssl_info.cfg
  9.  
  10. :start
  11. if "%1" == "" goto aktualni_cesta
  12.  
  13. %1\ssl_util.exe %1
  14. %1\ssleay.exe req -new -x509 -nodes -days 365 -config %1\ssleay.cfg -out %1\server.pem -keyout %1\server.pem
  15. %1\ssleay.exe x509 -inform pem -outform der -in %1\server.pem -out %1\server.crt
  16. copy %1\server.crt docs
  17. del %1\server.crt
  18. del %1\rand.dat
  19. goto end
  20.  
  21. :aktualni_cesta
  22. .\ssl_util.exe .
  23. .\ssleay.exe req -new -x509 -nodes -days 365 -config .\ssleay.cfg -out .\server.pem -keyout .\server.pem
  24. .\ssleay.exe x509 -inform pem -outform der -in .\server.pem -out .\server.crt
  25. copy .\server.crt docs
  26. del .\server.crt
  27. del .\rand.dat
  28.  
  29. :end