when i use this jar in my java application I cant import any class from jar with sample code
// Verifying Digital Signatures in a PDF document using Signature API for Java by GroupDocs
Signature signature = new Signature(“sample_signed.pdf”);
DigitalVerifyOptions options = new DigitalVerifyOptions(“certificate.pfx”);
options.setComments(“Test comment”);
options.setPassword(“1234567890”);
It looks like you are experiencing a reference issue.
May I ask you to copy the library to your [lib] folder in the project and import the Signature from the new path
So I would recommend using the way described here