Skip to main content
All docs
V23.2

SignaturePolicy Class

Contains signature policy options.

Namespace: DevExpress.Office.DigitalSignatures

Assembly: DevExpress.Docs.v23.2.dll

NuGet Package: DevExpress.Document.Processor

Declaration

public class SignaturePolicy

The following members return SignaturePolicy objects:

Remarks

Use the SignaturePolicy class options to specify the role and commitments that the signer assumes with regards to the signed data object.

Set the SignaturePolicy.IsImplied property to false to indicate the identifier and hash value identifies the policy. Otherwise, the SignaturePolicy.Identifier and SignaturePolicy.DigestMethod property values are ignored.

The code sample below defines the signature policy:

SignatureInfo signatureInfo = new SignatureInfo();
SignaturePolicy policy = signatureInfo.Policy;
policy.IsImplied = false;
policy.Identifier = "https://...";
policy.DigestMethod = HashAlgorithmType.SHA384;

Inheritance

Object
SignaturePolicy
See Also