You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

list-crl 297B

12345678910111213
  1. #!/bin/bash
  2. # list revoked certificates
  3. CRL="${1:-crl.pem}"
  4. if [ "$KEY_DIR" ]; then
  5. cd "$KEY_DIR" && \
  6. $OPENSSL crl -text -noout -in "$CRL"
  7. else
  8. echo 'Please source the vars script first (i.e. "source ./vars")'
  9. echo 'Make sure you have edited it to reflect your configuration.'
  10. fi