This article is just a simple template to create a self-issued CA and Subordinate CA to issue TLS certificates
You can configure the Signature Algorithm, test CRS and OCSP as well.
You can find the source here
The structure of the repo shows who’s on first
$ tree
.
├── ca // CA details stored here
├── certs // issued certs stored here
├── client.conf // config for the client certs
├── crl // CRLs are stored here
├── LICENSE
├── README.md
├── root-ca.conf // config for the root ca
├── server.conf // config for the server certs
└── tls-ca.conf // config for the subordinate ca
Create a root CA and subordinate
mkdir -p ca/root-ca/private ca/root-ca/db crl certs
chmod 700 ca/root-ca/private
cp /dev/null ca/root-ca/db/root-ca.db
cp /dev/null ca/root-ca/db/root-ca.db.attr
echo 01 > ca/root-ca/db/root-ca.crt.srl
echo 01 > ca/root-ca/db/root-ca.crl.srl
# Pick signature algo (either do A,B or C)
# A) Signature Algorithm: sha256WithRSAEncryption
openssl genpkey -algorithm rsa -pkeyopt rsa_keygen_bits:2048 \
-pkeyopt rsa_keygen_pubexp:65537 -out ca/root-ca/private/root-ca.key
# B) Signature Algorithm: rsassaPss
openssl genpkey -algorithm rsa-pss -pkeyopt rsa_keygen_bits:2048 \
-pkeyopt rsa_keygen_pubexp:65537 -out ca/root-ca/private/root-ca.key
# C) Signature Algorithm: ecdsa-with-SHA256
openssl genpkey -algorithm ec -pkeyopt ec_paramgen_curve:P-256 \
-pkeyopt ec_param_enc:named_curve -pkeyopt ec_paramgen_curve:secp384r1 \
-out ca/root-ca/private/root-ca.key
openssl req -new -config root-ca.conf -key ca/root-ca/private/root-ca.key \
-out ca/root-ca.csr
openssl ca -selfsign -config root-ca.conf \
-in ca/root-ca.csr -out ca/root-ca.crt \
-extensions root_ca_ext
openssl x509 -in ca/root-ca.crt -text -noout
Optionally create a CRL
mkdir crl/
openssl ca -gencrl -config root-ca.conf -out crl/root-ca.crl
openssl crl -in crl/root-ca.crl -noout -text
This is the CA that will issue the client and server certs
mkdir -p ca/tls-ca/private ca/tls-ca/db crl certs
chmod 700 ca/tls-ca/private
cp /dev/null ca/tls-ca/db/tls-ca.db
cp /dev/null ca/tls-ca/db/tls-ca.db.attr
echo 01 > ca/tls-ca/db/tls-ca.crt.srl
echo 01 > ca/tls-ca/db/tls-ca.crl.srl
# Pick signature algo (either do A,B or C)
# A) Signature Algorithm: sha256WithRSAEncryption
openssl genpkey -algorithm rsa -pkeyopt rsa_keygen_bits:2048 \
-pkeyopt rsa_keygen_pubexp:65537 -out ca/tls-ca/private/tls-ca.key
# B) Signature Algorithm: rsassaPss
openssl genpkey -algorithm rsa-pss -pkeyopt rsa_keygen_bits:2048 \
-pkeyopt rsa_keygen_pubexp:65537 -out ca/tls-ca/private/tls-ca.key
# C) Signature Algorithm: ecdsa-with-SHA256
openssl genpkey -algorithm ec -pkeyopt ec_paramgen_curve:P-256 \
-pkeyopt ec_param_enc:named_curve -pkeyopt ec_paramgen_curve:secp384r1 \
-out ca/tls-ca/private/tls-ca.key
openssl req -new -config tls-ca.conf -key ca/tls-ca/private/tls-ca.key \
-out ca/tls-ca.csr
openssl ca \
-config root-ca.conf \
-in ca/tls-ca.csr \
-out ca/tls-ca.crt \
-extensions signing_ca_ext
openssl ca -gencrl \
-config tls-ca.conf \
-out crl/tls-ca.crl
cat ca/tls-ca.crt ca/root-ca.crt > ca/tls-ca-chain.pem
Set env vars for the server cert
NAME: filename to use for the cert/key/csr SAN: SAN Value
edit the CN value below (eg to the same SAN Value)
export NAME=server
export SAN=DNS:server.domain.com
openssl req -new -config server.conf \
-out certs/$NAME.csr \
-keyout certs/$NAME.key \
-subj "/C=US/O=Google/OU=Enterprise/CN=server.domain.com"
openssl ca \
-config tls-ca.conf \
-in certs/$NAME.csr \
-out certs/$NAME.crt \
-extensions server_ext
Generate client certificate
export NAME=tokenclient
openssl req -new \
-config client.conf \
-out certs/$NAME.csr \
-keyout certs/$NAME.key \
-subj "/C=US/O=Google/OU=Enterprise/CN=user@domain.com"
openssl ca \
-config tls-ca.conf \
-in certs/$NAME.csr \
-out certs/$NAME.crt \
-policy extern_pol \
-extensions client_ext
If you want to revoke a certificate certs/$NAME.crt
, run
openssl ca -config tls-ca.conf -revoke certs/$NAME.crt
and then regenerate the CRL
you’ll end up with
$ tree
.
├── ca
│ ├── root-ca
│ │ ├── 01.pem
│ │ ├── 02.pem
│ │ ├── db
│ │ │ ├── root-ca.crl.srl
│ │ │ ├── root-ca.crl.srl.old
│ │ │ ├── root-ca.crt.srl
│ │ │ ├── root-ca.crt.srl.old
│ │ │ ├── root-ca.db
│ │ │ ├── root-ca.db.attr
│ │ │ ├── root-ca.db.attr.old
│ │ │ └── root-ca.db.old
│ │ └── private
│ │ └── root-ca.key // root CA key
│ ├── root-ca.crt // root CA cert
│ ├── root-ca.csr
│ ├── tls-ca
│ │ ├── 01.pem
│ │ ├── 02.pem
│ │ ├── db
│ │ │ ├── tls-ca.crl.srl
│ │ │ ├── tls-ca.crl.srl.old
│ │ │ ├── tls-ca.crt.srl
│ │ │ ├── tls-ca.crt.srl.old
│ │ │ ├── tls-ca.db
│ │ │ ├── tls-ca.db.attr
│ │ │ ├── tls-ca.db.attr.old
│ │ │ └── tls-ca.db.old
│ │ └── private
│ │ └── tls-ca.key // subordinate CA key
│ ├── tls-ca-chain.pem
│ ├── tls-ca.crt // subordinate CA cert
│ └── tls-ca.csr
├── certs
│ ├── server.crt // issued server cert by tls-ca
│ ├── server.csr
│ ├── server.key // issued server key by tls-ca
│ ├── tokenclient.crt // client cert
│ ├── tokenclient.csr
│ └── tokenclient.key // client key
├── client.conf
├── crl // CRL file
│ ├── root-ca.crl
│ └── tls-ca.crl
├── LICENSE
├── README.md
├── root-ca.conf
├── server.conf
└── tls-ca.conf
This site supports webmentions. Send me a mention via this form.