18501739c2
FossilOrigin-Name: d738cb3c6d6dde01ec9a855c67bca85e55a2aecec93d37625bdfb2b2a997e1d9
6 lines
185 B
Bash
Executable File
6 lines
185 B
Bash
Executable File
#!/bin/sh
|
|
echo Creating Root CA
|
|
openssl genrsa -des3 -out root-ca.key 1536 -config openssl.cnf
|
|
openssl req -new -x509 -days 3650 -key root-ca.key -out root-ca.crt -config openssl.cnf
|
|
|