blob: a3f234b185575aa92070a76e369045242caab59e (
plain) (
blame)
1
2
3
4
|
@echo off
cd %HOME%
rem build a cert authority valid for ten years, starting now
openssl req -days 3650 -nodes -new -x509 -keyout %KEY_DIR%\ca.key -out %KEY_DIR%\ca.crt -config %KEY_CONFIG%
|