Table of Contents

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 = 1

Revocation was verified using a CRL embedded in the PDF's DSS dictionary (offline).

EmbeddedOcsp = 2

Revocation was verified using an OCSP response embedded in the PDF's DSS dictionary (offline).

Indeterminate = 5

Revocation check was attempted but could not be completed (network failure, no URL, etc.).

None = 0

Revocation check was not performed (disabled or certificate had no revocation URLs).

OnlineCrl = 3

Revocation was verified by downloading a fresh CRL from the certificate's CDP endpoint (online).

OnlineOcsp = 4

Revocation was verified via a live OCSP request to the certificate's AIA endpoint (online).