I was getting the error ‘ssl_error_expired_cert_alert’ in Firefox. I checked my client certificate and it hadn’t expired. I checked my CA certificate and it hadn’t expired. It turned out that the problem was that my ca.crl Certificate Revocation List had expired. I fixed that by running jj5-bin empathy-ca-update-crl which says:
echo Updating CRL... openssl ca -gencrl -config ca.cnf -cert cacert.crt -out ca.crl.pem -crldays 365 if [ "$?" -ne "0" ]; then echo Error updating CRL. exit 1 fi echo Exporting CRL to DER format... openssl crl -in ca.crl.pem -outform DER -out ca.crl.der if [ "$?" -ne "0" ]; then echo Error exporting CRL in DER format. exit 1 fi echo Viewing CRL... openssl crl -in ca.crl.pem -noout -text if [ "$?" -ne "0" ]; then echo Error viewing CRL. exit 1 fi