Enum RevocationSource
- Namespace
- SimpleSign.Core.Validation
- Assembly
- SimpleSign.Core.dll
Describes the mechanism used to verify the revocation status of a signer's certificate. Useful for distinguishing offline (B-LT/B-LTA) from online (B-T) revocation checks.
public enum RevocationSource
Fields
EmbeddedCrl = 1Revocation was verified using a CRL embedded in the PDF's DSS dictionary (offline).
EmbeddedOcsp = 2Revocation was verified using an OCSP response embedded in the PDF's DSS dictionary (offline).
Indeterminate = 5Revocation check was attempted but could not be completed (network failure, no URL, etc.).
None = 0Revocation check was not performed (disabled or certificate had no revocation URLs).
OnlineCrl = 3Revocation was verified by downloading a fresh CRL from the certificate's CDP endpoint (online).
OnlineOcsp = 4Revocation was verified via a live OCSP request to the certificate's AIA endpoint (online).