Table of Contents

Enum PdfCertificateRevocationCheckMode

Namespace
BitMiracle.Docotic.Pdf
Assembly
BitMiracle.Docotic.Pdf.dll

All possible modes for certificate revocation checks.

public enum PdfCertificateRevocationCheckMode

Fields

EmbeddedCrl = 2

Library checks certificate revocation status using only CRL information embedded in the file.

EmbeddedOcsp = 0

Library checks certificate revocation status using only OCSP information embedded in the file.

OnlineCrl = 3

Library checks certificate revocation status using only CRL information available online. This mode requires internet connection.

OnlineOcsp = 1

Library checks certificate revocation status using only OCSP information available online. This mode requires internet connection.

Remarks

The Verify PDF signature in C# and VB.NET article shows how to check if the signed part of a document was changed after signing.

Check out the other articles and code samples on the Digital signatures page.