Verify Digital signatures in the document
Leave feedback
GroupDocs.Signature providesΒ DigitalVerifyOptionsΒ classΒ to specify different options for digital signatures verification.
Here are the steps to verify Digital signature within the document with GroupDocs.Signature:
- Create new instance ofΒ SignatureΒ class and pass source document path as a constructor parameter.
- Instantiate theΒ DigitalVerifyOptionsΒ object according to your requirements and specify verification options
- CallΒ VerifyΒ method ofΒ SignatureΒ class instance and passΒ DigitalVerifyOptionsΒ to it.
This example shows how to verify Digital signature in the document.
using (Signature signature = new Signature("sample.pdf"))
{
DigitalVerifyOptions options = new DigitalVerifyOptions("certificate.pfx")
{
Comments = "Test comment"
};
// verify document signatures
VerificationResult result = signature.Verify(options);
if (result.IsValid)
{
Console.WriteLine("\nDocument was verified successfully!");
}
else
{
Console.WriteLine("\nDocument failed verification process.");
}
}
To learn more about document eSign features, please refer to theΒ advanced usage section.
You may easily run the code above and see the feature in action in ourΒ GitHub examples:
- GroupDocs.Signature for .NET examples, plugins, and showcase
- GroupDocs.Signature for Java examples, plugins, and showcase
- Document Signature for .NET MVC UI Example
- Document Signature for .NET App WebForms UI Example
- Document Signature for Java App Dropwizard UI Example
- Document Signature for Java Spring UI Example
Along with the full-featured .NET library, we provide simple but powerful free online apps.
To sign PDF, Word, Excel, PowerPoint, and other documents you can use the online apps from the GroupDocs.Signature App Product Family.
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.