#!/bin/bash

# revoke a certificate, regenerate CRL,
# and verify revocation

CRL="crl.pem"
RT=`mktemp`
if [ "$KEY_DIR" ]; then
    cd "$KEY_DIR"
    rm -f "$RT"
export KEY_DIR
echo $KEY_DIR
    # set defaults
    export KEY_CN=""
    export KEY_OU=""

    # generate a new CRL -- try to be compatible with
    # intermediate PKIs
    $OPENSSL ca -gencrl -out "$CRL" -config "$KEY_CONFIG" 2>&1
    cd "$KEY_DIR"
    
    if [ -e export-ca.crt ]; then
	cat export-ca.crt "$CRL" >"$RT"
    else
	cat ca.crt "$CRL" >"$RT"
    fi
    
    # verify the revocation
    $OPENSSL verify -CAfile "$RT" -crl_check "$1.crt"
else
    echo 'Please source the vars script first (i.e. "source ./vars")'
    echo 'Make sure you have edited it to reflect your configuration.'
fi

rm $RT
