anyproxy/cert/gen-rootCA
2014-08-14 10:59:49 +08:00

12 lines
234 B
Bash
Executable File

#!/bin/bash
outputPath=$1
cd $outputPath
openssl genrsa -out rootCA.key 2048
openssl req -x509 -new -nodes -key rootCA.key -days 36500 -out rootCA.crt
echo "============="
echo "rootCA generated at :"
pwd
echo "============="
exit 0