Jan Dittberner
a960a60ecd
The example CA now has more realistic 2 levels with a root CA and a sub CA. Setup script and ca.cnf has been changed to create a root CA and a sub CA that is signed by the root CA. The sub CA is used for signing the end entity certificates. Example CA directory has been changed to example_ca for better readability.
39 lines
No EOL
1,014 B
Bash
Executable file
39 lines
No EOL
1,014 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
COUNTRY_CODE=CH
|
|
ORGANIZATION="Acme Ltd."
|
|
|
|
if [ ! -d "example_ca" ]; then
|
|
mkdir -p example_ca/root/newcerts example_ca/sub/newcerts
|
|
touch example_ca/root/index.txt example_ca/sub/index.txt
|
|
umask 077
|
|
mkdir example_ca/root/private example_ca/sub/private
|
|
openssl req -new -x509 \
|
|
-config ca.cnf \
|
|
-keyout example_ca/root/private/ca.key.pem \
|
|
-newkey rsa:3072 \
|
|
-nodes \
|
|
-subj "/CN=Example Root CA/C=${COUNTRY_CODE}/O=${ORGANIZATION}" \
|
|
-utf8 \
|
|
-days 3650 \
|
|
-out example_ca/root/ca.crt.pem
|
|
chmod +r example_ca/root/ca.crt.pem
|
|
openssl req -new \
|
|
-config ca.cnf \
|
|
-keyout example_ca/sub/private/ca.key.pem \
|
|
-newkey rsa:3072 \
|
|
-nodes \
|
|
-subj "/CN=Example Sub CA/C=${COUNTRY_CODE}/O=${ORGANIZATION}" \
|
|
-utf8 \
|
|
-out example_ca/sub/ca.csr.pem
|
|
openssl ca \
|
|
-config ca.cnf \
|
|
-name rootca \
|
|
-in example_ca/sub/ca.csr.pem \
|
|
-extensions sub_ca \
|
|
-out example_ca/sub/ca.crt.pem \
|
|
-create_serial \
|
|
-batch
|
|
fi |