Enum VerificationOptions.CertificateTrustFlag
An enumeration representing the level of trust associated with a particular certificate. Multiple flag values can be combined using bitwise operators.
Namespace: pdftron.PDF
Assembly: PDFNet.dll
Syntax
public enum VerificationOptions.CertificateTrustFlag
Fields
Name | Description |
---|---|
e_certification_trust | analogous to "kPSSigTrustAuthenticDocuments" in FDF cert exchange specification. Allows certifications using this identity to be verified. |
e_complete_trust | another handy shortcut for testing |
e_default_trust | handy shortcut for what Acrobat does by default -- trust for everything except certification, javascript, and dynamic |
e_dynamic_content | analogous to "kPSSigTrustDynamicContent" in FDF cert exchange specification. Just like in Acrobat, does not invalidate dynamic documents, just intended to stop viewers from allowing its use on documents which are not trusted for it. |
e_identity | analogous to "kPSSigTrustIdentity" in FDF cert exchange specification. If this flag is not set, all other flags are ignored, and certificate is used only for path building. |
e_javascript | analogous to "kPSSigTrustJavaScript" in FDF cert exchange specification. Just like in Acrobat, does not invalidate JavaScript-containing documents, just intended to stop viewers from allowing its use on documents which are not trusted for it. |
e_signing_trust | analogous to "kPSSigTrustSigning" in FDF cert exchange specification. Automatically set even when not specified, just like in Acrobat. |
e_trust_anchor | analogous to "kPSSigTrustAnchor" in FDF cert exchange specification. If this flag is set, paths may end with this certificate, and no revocation checks are done for it. |