Hi,
I have signed a PDF document via ASPOSE. And then I want to get information about the person or authority signing the document. And I get null results.
code.zip (5.5 KB)
If you need, In attached you can find code for signing-pdf, code for getting signature-information, and used .pfx file.
In aspose.word I could fetch the needed information
for (DigitalSignature digitalSignature : document.getDigitalSignatures()) {
subjects.add(digitalSignature.getSubjectName());
}