ad34954787
FossilOrigin-Name: f3e5531615f44c27f85ae218462f9b11c387bef255abedf38f9c52fd9e80a400
7 lines
187 B
Bash
Executable File
7 lines
187 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 3365 -key root-ca.key -out root-ca.crt -config openssl.cnf
|
|
|
|
|