This example shows how to make advanced search for Digital signature in the document.
Signaturesignature=newSignature("signed.pdf");DigitalSearchOptionsoptions=newDigitalSearchOptions();// specify special search criteria
options.setComments("Test comment");// certificate issues criteria
options.setIssuerName("John");// digital certificate subject
options.setSubjectName("Test");// specify date range period of signature
options.setSignDateTimeFrom(DateUtils.addMonths(newDate(),-1));options.setSignDateTimeTo(newDate());// search for signatures in document
List<DigitalSignature>signatures=signature.search(DigitalSignature.class,options);System.out.print("\nSource document contains following signatures.");for(DigitalSignaturedigitalSignature:signatures){System.out.print("Digital signature found from "+digitalSignature.getSignTime()+" with validation flag "+digitalSignature.isValid()+". Certificate SN "+digitalSignature.getCertificate().getType());}
More resources
GitHub Examples
You may easily run the code above and see the feature in action in our GitHub examples:
Along with full-featured .NET library we provide simple, but powerful free Apps. You are welcome to eSign PDF, Word, Excel, PowerPoint documents with free to use online GroupDocs Signature App.
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.