177 lines
5.0 KiB
Bash
177 lines
5.0 KiB
Bash
#!/bin/sh
|
|
# Helper script to create CA and server certificates.
|
|
|
|
srcdir=${1-.}
|
|
|
|
OPENSSL=${OPENSSL-openssl}
|
|
CONF=${srcdir}/openssl.conf
|
|
REQ="${OPENSSL} req -config ${CONF}"
|
|
CA="${OPENSSL} ca -config ${CONF} -batch"
|
|
# MKCERT makes a self-signed cert
|
|
MKCERT="${REQ} -x509 -new -days 900"
|
|
|
|
REQDN=reqDN
|
|
STRMASK=default
|
|
export REQDN STRMASK
|
|
|
|
set -ex
|
|
|
|
mkdir ca
|
|
touch ca/index.txt
|
|
echo 01 > ca/serial
|
|
|
|
${OPENSSL} genrsa -rand ${srcdir}/../configure > ca/key.pem
|
|
${OPENSSL} genrsa -rand ${srcdir}/../configure > client.key
|
|
|
|
${MKCERT} -key ca/key.pem -out ca/cert.pem <<EOF
|
|
US
|
|
California
|
|
Oakland
|
|
Neosign
|
|
Random Dept
|
|
nowhere.example.com
|
|
neon@webdav.org
|
|
EOF
|
|
|
|
# Function to generate appropriate output for `openssl req'.
|
|
csr_fields() {
|
|
CN=${2-"localhost"}
|
|
OU=${1-"Neon QA Dept"}
|
|
Org=${3-"Neon Hackers Ltd"}
|
|
Locality=${4-"Cambridge"}
|
|
State=${5-"Cambridgeshire"}
|
|
cat <<EOF
|
|
GB
|
|
${State}
|
|
${Locality}
|
|
${Org}
|
|
${OU}
|
|
${CN}
|
|
neon@webdav.org
|
|
.
|
|
.
|
|
EOF
|
|
}
|
|
|
|
csr_fields | ${REQ} -new -key ${srcdir}/server.key -out server.csr
|
|
|
|
csr_fields "Upper Case Dept" lOcALhost | \
|
|
${REQ} -new -key ${srcdir}/server.key -out caseless.csr
|
|
|
|
csr_fields "Use AltName Dept" nowhere.example.com | \
|
|
${REQ} -new -key ${srcdir}/server.key -out altname1.csr
|
|
|
|
csr_fields "Two AltName Dept" nowhere.example.com | \
|
|
${REQ} -new -key ${srcdir}/server.key -out altname2.csr
|
|
|
|
csr_fields "Third AltName Dept" nowhere.example.com | \
|
|
${REQ} -new -key ${srcdir}/server.key -out altname3.csr
|
|
|
|
csr_fields "Fourth AltName Dept" localhost | \
|
|
${REQ} -new -key ${srcdir}/server.key -out altname4.csr
|
|
|
|
csr_fields "Good ipAddress altname Dept" nowhere.example.com | \
|
|
${REQ} -new -key ${srcdir}/server.key -out altname5.csr
|
|
|
|
csr_fields "Bad ipAddress altname Dept" nowhere.example.com | \
|
|
${REQ} -new -key ${srcdir}/server.key -out altname6.csr
|
|
|
|
csr_fields "Self-Signed" | \
|
|
${MKCERT} -key ${srcdir}/server.key -out ssigned.pem
|
|
|
|
csr_fields "Bad Hostname Department" nohost.example.com | \
|
|
${MKCERT} -key ${srcdir}/server.key -out wrongcn.pem
|
|
|
|
# default => T61String
|
|
csr_fields "`echo -e 'H\0350llo World'`" localhost |
|
|
${MKCERT} -key ${srcdir}/server.key -out t61subj.cert
|
|
|
|
STRMASK=pkix # => BMPString
|
|
csr_fields "`echo -e 'H\0350llo World'`" localhost |
|
|
${MKCERT} -key ${srcdir}/server.key -out bmpsubj.cert
|
|
|
|
STRMASK=utf8only # => UTF8String
|
|
csr_fields "`echo -e 'H\0350llo World'`" localhost |
|
|
${MKCERT} -key ${srcdir}/server.key -out utf8subj.cert
|
|
|
|
STRMASK=default
|
|
|
|
### produce a set of CA certs
|
|
|
|
csr_fields "First Random CA" "first.example.com" "CAs Ltd." Lincoln Lincolnshire | \
|
|
${MKCERT} -key ${srcdir}/server.key -out ca1.pem
|
|
|
|
csr_fields "Second Random CA" "second.example.com" "CAs Ltd." Falmouth Cornwall | \
|
|
${MKCERT} -key ${srcdir}/server.key -out ca2.pem
|
|
|
|
csr_fields "Third Random CA" "third.example.com" "CAs Ltd." Ipswich Suffolk | \
|
|
${MKCERT} -key ${srcdir}/server.key -out ca3.pem
|
|
|
|
csr_fields "Fourth Random CA" "fourth.example.com" "CAs Ltd." Norwich Norfolk | \
|
|
${MKCERT} -key ${srcdir}/server.key -out ca4.pem
|
|
|
|
cat ca[1234].pem > calist.pem
|
|
|
|
# The hostname munging only works if `hostname` always reports the
|
|
# FQDN; continue if anything fails since appropriate tests will be
|
|
# skipped if this fails.
|
|
|
|
hostname=`hostname | sed 's,\..*,,'` || true
|
|
domain=`hostname | sed 's,.*\.,,'` || true
|
|
fqdn=`hostname` || true
|
|
if [ "x${hostname}.${domain}" = "x${fqdn}" ]; then
|
|
csr_fields "Wildcard Cert Dept" "*.${domain}" | \
|
|
${REQ} -new -key ${srcdir}/server.key -out wildcard.csr
|
|
${CA} -days 900 -in wildcard.csr -out wildcard.cert
|
|
fi
|
|
|
|
csr_fields "Neon Client Cert" ignored.example.com | \
|
|
${REQ} -new -key client.key -out client.csr
|
|
|
|
### requests using special DN.
|
|
|
|
REQDN=reqDN.doubleCN
|
|
csr_fields "Double CN Dept" "nohost.example.com
|
|
localhost" | ${REQ} -new -key ${srcdir}/server.key -out twocn.csr
|
|
|
|
REQDN=reqDN.CNfirst
|
|
echo localhost | ${REQ} -new -key ${srcdir}/server.key -out cnfirst.csr
|
|
|
|
REQDN=reqDN.missingCN
|
|
echo GB | ${REQ} -new -key ${srcdir}/server.key -out missingcn.csr
|
|
|
|
REQDN=reqDN.justEmail
|
|
echo blah@example.com | ${REQ} -new -key ${srcdir}/server.key -out justmail.csr
|
|
|
|
# presume AVAs will come out in least->most specific order still...
|
|
REQDN=reqDN.twoOU
|
|
csr_fields "Second OU Dept
|
|
First OU Dept" | ${REQ} -new -key ${srcdir}/server.key -out twoou.csr
|
|
|
|
### don't put ${REQ} invocations after here
|
|
|
|
for f in server client twocn caseless cnfirst missingcn justmail twoou; do
|
|
${CA} -days 900 -in ${f}.csr -out ${f}.cert
|
|
done
|
|
|
|
for n in 1 2 3 4 5 6; do
|
|
${CA} -extensions altExt${n} -days 900 \
|
|
-in altname${n}.csr -out altname${n}.cert
|
|
done
|
|
|
|
MKPKCS12="${OPENSSL} pkcs12 -export -passout stdin -in client.cert -inkey client.key"
|
|
|
|
# generate a PKCS12 cert from the client cert: -passOUT because it's the
|
|
# passphrase on the OUTPUT cert, confusing...
|
|
echo foobar | ${MKPKCS12} -name "Just A Neon Client Cert" -out client.p12
|
|
|
|
# generate a PKCS#12 cert with no password and a friendly name
|
|
echo | ${MKPKCS12} -name "An Unencrypted Neon Client Cert" -out unclient.p12
|
|
|
|
# generate a PKCS#12 cert with no friendly name
|
|
echo | ${MKPKCS12} -out noclient.p12
|
|
|
|
### a file containing a complete chain
|
|
|
|
cat ca/cert.pem server.cert > chain.pem
|