x509-crl/entries-count x509-crl/get-entry x509-crl/is-revoked x509-crl/load x509-crl/load-file x509-crl/next-update x509-crl/this-update
x509-crl-entry/reason x509-crl-entry/revocation-date x509-crl-entry/serial-number
(x509-crl/entries-count crl-obj)Return the number of entries in the CRL.
(x509-crl/get-entry crl-obj index)Return the CRL entry at the given `index`. Use `x509-crl/entries-count` to get the number of entries.
(x509-crl/is-revoked crl cert)Check whether a given `crl` contains a given `cert`. Return true when the certificate is revoked.
(x509-crl/next-update crl-obj)Return the time the next CRL update is expected, as seconds since epoch.
(x509-crl/this-update crl-obj)Return the time the CRL was issued, as seconds since epoch.
(x509-crl-entry/reason crl-entry)Return the revocation reason code for the CRL entry.
0: Unspecified
1: Key Compromise
2: CA Compromise
3: Affiliation Changed
4: Superseded
5: Cessation of Operation
6: Certificate Hold
8: Remove from CRL
9: Privilege Withdrawn
10: AA Compromise
(x509-crl-entry/revocation-date crl-entry)Return the revocation date as seconds since epoch.
(x509-crl-entry/serial-number crl-entry)Return the serial number of the revoked certificate.