Class VerificationOptions
Options pertaining to digital signature verification.
Implements
Inherited Members
Namespace: pdftron.PDF
Assembly: PDFNet.dll
Syntax
public sealed class VerificationOptions : IDisposable
Constructors
VerificationOptions(SignatureVerificationSecurityLevel)
Constructs a set of options for digital signature verification.
Declaration
public VerificationOptions(VerificationOptions.SignatureVerificationSecurityLevel in_level)
Parameters
Type | Name | Description |
---|---|---|
VerificationOptions.SignatureVerificationSecurityLevel | in_level | the general security level to use. Sets other security settings internally. |
Methods
AddTrustedCertificate(byte[])
Adds a certificate to the store of trusted certificates inside this options object. This overload uses the e_default_trust CertificateTrustFlag, which matches Acrobat's behaviour, to determine the trust level of the certificate.
Declaration
public void AddTrustedCertificate(byte[] in_certificate_data)
Parameters
Type | Name | Description |
---|---|---|
byte[] | in_certificate_data | a buffer consisting of the data of an X.509 public-key certificate encoded in binary DER (Distinguished Encoding Rules) format, or in PEM (appropriate Privacy-Enhanced Mail header + Base64 encoded DER + appropriate footer) format |
AddTrustedCertificate(byte[], ushort)
Declaration
public void AddTrustedCertificate(byte[] in_certificate_data, ushort in_trust_flags)
Parameters
Type | Name | Description |
---|---|---|
byte[] | in_certificate_data | |
ushort | in_trust_flags |
AddTrustedCertificate(string)
Adds a certificate to the store of trusted certificates inside this options object, by loading it from a file. This overload uses the e_default_trust CertificateTrustFlag, which matches Acrobat's behaviour, to determine the trust level of the certificate.
Declaration
public void AddTrustedCertificate(string in_filepath)
Parameters
Type | Name | Description |
---|---|---|
string | in_filepath | a path to a file containing the data of an X.509 public-key certificate encoded in binary DER (Distinguished Encoding Rules) format, or in PEM (appropriate Privacy-Enhanced Mail header+Base64 encoded DER+appropriate footer) format |
AddTrustedCertificate(string, ushort)
Declaration
public void AddTrustedCertificate(string in_filepath, ushort in_trust_flags)
Parameters
Type | Name | Description |
---|---|---|
string | in_filepath | |
ushort | in_trust_flags |
AddTrustedCertificates(byte[])
Bulk trust list loading API from P7C. Attempts to decode the input data as binary DER and trust multiple trusted root certificates from it. Compatible with Acrobat's .P7C format, which is a variation on PKCS #7/CMS that only contains certificates (i.e. no CRLs, no signature, etc.). If a certificate cannot be decoded, this is ignored and an attempt is made to decode the next certificate. This overload takes no account of trust-level flags because none are available in the P7C format. Therefore, when this function is used, all certificates in the P7C file will be loaded as if trusted for everything, which may lead to false positives when compared to other PDF software. (Most applications use the FDF Cert Exchange format.) The FDF-trust-list-loading function "LoadTrustList" should be used instead whenever possible.
Declaration
public void AddTrustedCertificates(byte[] in_P7C_binary_DER_certificates_file_data)
Parameters
Type | Name | Description |
---|---|---|
byte[] | in_P7C_binary_DER_certificates_file_data | the P7C-format bulk certificate data, encoded in binary DER (Distinguished Encoding Rules) |
Dispose()
Declaration
public override sealed void Dispose()
Dispose(bool)
Declaration
[HandleProcessCorruptedStateExceptions]
protected void Dispose(bool A_0)
Parameters
Type | Name | Description |
---|---|---|
bool | A_0 |
EnableDigestVerification(bool)
Sets a flag that can turn on or off the verification of the digest (cryptographic hash) component of a digital signature.
Declaration
public void EnableDigestVerification(bool in_on_or_off)
Parameters
Type | Name | Description |
---|---|---|
bool | in_on_or_off | A boolean. |
EnableModificationVerification(bool)
Sets a flag that can turn on or off the verification of the permissibility of any modifications made to the document after the signing of the digital signature being verified, in terms of the document and field permissions specified by the digital signature being verified.
Declaration
public void EnableModificationVerification(bool in_on_or_off)
Parameters
Type | Name | Description |
---|---|---|
bool | in_on_or_off | A boolean. |
EnableOnlineCRLRevocationChecking(bool)
Enables / disables online CRL revocation checking.The default setting is for it to be turned off, but this may change in future versions.
Declaration
public void EnableOnlineCRLRevocationChecking(bool in_on_or_off)
Parameters
Type | Name | Description |
---|---|---|
bool | in_on_or_off | what setting to use |
Remarks
CRL checking is off by default because the technology is inherently complicated and resource - intensive, but may help improve verification rate when files are verified against a recent reference - time(e.g.maximum security mode), because online CRLs will be valid within that time.This mode will not be useful for old archival - type('LTV') documents verified in archiving - and-compatibility security mode, because their online OCSP and / or CRL responder servers may not be alive anymore.However, such LTV documents can be created (if the CRL responder servers are still active) by enabling online checking, verifying, and then embedding the data using DigitalSignatureField.EnableLTVOfflineVerification.
EnableOnlineOCSPRevocationChecking(bool)
Enables/disables online OCSP revocation checking. The default setting is for it to be turned on.
Declaration
public void EnableOnlineOCSPRevocationChecking(bool in_on_or_off)
Parameters
Type | Name | Description |
---|---|---|
bool | in_on_or_off | what setting to use |
EnableOnlineRevocationChecking(bool)
Enables/disables all online revocation checking modes. The default settings are that online OCSP is turned on and online CRL is turned off, but the default CRL setting may change in future versions.
Declaration
public void EnableOnlineRevocationChecking(bool in_on_or_off)
Parameters
Type | Name | Description |
---|---|---|
bool | in_on_or_off | what setting to use. |
Remarks
CRL checking is off by default because the technology is inherently complicated and resource - intensive, but may help improve verification rate when files are verified against a recent reference - time(e.g.maximum security mode), because online CRLs will be valid within that time.This mode will not be useful for old archival - type('LTV') documents verified in archiving - and-compatibility security mode, because their online OCSP and / or CRL responder servers may not be alive anymore.However, such LTV documents can be created (if the CRL responder servers are still active) by enabling online checking, verifying, and then embedding the data using DigitalSignatureField.EnableLTVOfflineVerification.
EnableTrustVerification(bool)
Sets a flag that can turn on or off the verification of the trust status of a digital signature.
Declaration
public void EnableTrustVerification(bool in_on_or_off)
Parameters
Type | Name | Description |
---|---|---|
bool | in_on_or_off | A boolean. |
~VerificationOptions()
Declaration
protected ~VerificationOptions()
GetTrustedCertificate(int)
Get the certificate at a specific position in the current list of trusted certificates.
Declaration
public X509Certificate GetTrustedCertificate(int index)
Parameters
Type | Name | Description |
---|---|---|
int | index | the index of the certificate in the current list |
Returns
Type | Description |
---|---|
X509Certificate | the certificate at position index in the list |
GetTrustedCertificateCount()
Get the number of trusted certificates that have been added.
Declaration
public int GetTrustedCertificateCount()
Returns
Type | Description |
---|---|
int | the number of trusted certificates |
LoadTrustList(FDFDoc)
Bulk trust list loading API with trust flag support. Loads a trust list that is structured in Acrobat's FDF Data/Cert Exchange format into the VerificationOptions certificate store. Use of this function is strongly recommended instead of the P7C API (i.e. AddTrustedCertificates). Certificates inside the FDF trust list that cannot be decoded and loaded, will be skipped.
Declaration
public void LoadTrustList(FDFDoc in_fdf_cert_exchange_data)
Parameters
Type | Name | Description |
---|---|---|
FDFDoc | in_fdf_cert_exchange_data | an FDFDoc from the FDF cert exchange data |
SetRevocationTimeout(uint)
Declaration
public void SetRevocationTimeout(uint in_revocation_timeout_milliseconds)
Parameters
Type | Name | Description |
---|---|---|
uint | in_revocation_timeout_milliseconds |