X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/f5d786885721c374cc22a1f1311ca01408a496fd..7d758a6a6842fac6c511039c29d76300e2e21ccd:/test/aux-fixed/exim-ca/genall diff --git a/test/aux-fixed/exim-ca/genall b/test/aux-fixed/exim-ca/genall index 63a3618ee..899bb8069 100755 --- a/test/aux-fixed/exim-ca/genall +++ b/test/aux-fixed/exim-ca/genall @@ -1,19 +1,40 @@ #!/bin/bash # +set -e +set -x + +clica --help >/dev/null 2>&1 + echo Ensure time is set to 2012/11/01 12:34 echo use - date -u 110112342012 echo hit return when ready read junk for tld in com org net do - clica -D example.$tld -p password -B 512 -I -N example.$tld -F -C http://crl.example.$tld/latest.crl -O http://oscp/example.$tld/ - clica -D example.$tld -p password -s 101 -S server1.example.$tld - clica -D example.$tld -p password -s 102 -S revoked1.example.$tld + idir="example.$tld" + rm -fr "$idir" + clica -D "$idir" -p password -B 1024 -I -N example.$tld -F \ + -C http://crl.example.$tld/latest.crl -O http://oscp.example.$tld/ + + # -m + clica -D example.$tld -p password -s 101 -S server1.example.$tld -m 301 \ + -8 alternatename.server1.example.$tld,alternatename2.server1.example.$tld,*.test.ex + clica -D example.$tld -p password -s 102 -S revoked1.example.$tld -m 301 clica -D example.$tld -p password -s 103 -S expired1.example.$tld -m 1 - clica -D example.$tld -p password -s 201 -S server2.example.$tld - clica -D example.$tld -p password -s 202 -S revoked2.example.$tld + clica -D example.$tld -p password -s 201 -S server2.example.$tld -m 301 + clica -D example.$tld -p password -s 202 -S revoked2.example.$tld -m 301 clica -D example.$tld -p password -s 203 -S expired2.example.$tld -m 1 + + + # openssl seems to generate a file (ca_chain.pam) in an order it + # cannot then use (the key applies to the first cert in the file?). + # Generate a shuffled one. + cd example.$tld/server1.example.$tld + openssl pkcs12 -in server1.example.$tld.p12 -passin file:pwdfile -cacerts -out cacerts.pem -nokeys + cat server1.example.$tld.pem cacerts.pem > fullchain.pem + rm cacerts.pem + cd ../.. done # and loop again @@ -24,8 +45,19 @@ do pk12util -o $CADIR/OCSP.p12 -n 'OCSP Signer' -d $CADIR -K password -W password openssl pkcs12 -in $CADIR/OCSP.p12 -passin pass:password -passout pass:password -nodes -nocerts -out $CADIR/OCSP.key + # also need variation from Signer + pk12util -o $CADIR/Signer.p12 -n 'Signing Cert' -d $CADIR -K password -W password + openssl pkcs12 -in $CADIR/Signer.p12 -passin pass:password -passout pass:password -nodes -nocerts -out $CADIR/Signer.key # create some index files for the ocsp responder to work with +# tab-sep +# 0: Revoked/Expired/Valid letter +# 1: Expiry date (ASN1_UTCTIME) +# 2: Revocation date +# 3: Serial no. (unique) +# 4: file +# 5: DN, index + cat >$CADIR/index.valid.txt <