您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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