2014-08-10 21:32:50 +02:00
|
|
|
#!/bin/sh
|
|
|
|
echo Creating Root CA
|
|
|
|
openssl genrsa -des3 -out root-ca.key 1536 -config openssl.cnf
|
2014-08-11 17:31:52 +02:00
|
|
|
openssl req -new -x509 -days 33650 -key root-ca.key -out root-ca.crt -config openssl.cnf
|
|
|
|
|
2014-08-10 21:32:50 +02:00
|
|
|
|