|
|
Info ==Verifying a CRL === This example shows how to verify the authenticity of a CRL. You can enter the path for a directory containing all trusted CA ROOT certificates, or specify directly the CA ROOT certificate with which the verify should be performed. openssl crl -noout -CApath /etc/grid-security/certificates -in 11b4a5a2.r0 -noout openssl crl -noout -CAfile /etc/grid-security/certificates/11b4a5a2.0 -in 11b4a5a2.r0 -noout Display the content of a certificateThis example shows how to display in text format the content of a certificate. openssl x509 -text -noout -in usercert.pem Display the content of a CRLThis example shows how to display in text format the content of a CRL. openssl crl -text -noout -in /etc/grid-security/certificates/11b4a5a2.r0 |