Hi Team,
I have a pdf without a signature field and I want to add multiple invisible signatures to the pdf document. I am successfully able to sign the first signature when I try to sign the second signature my first signature became invalid and the second signature is vaild.
Note:
1) My pdf doesn't have a signature field and I am not creating a signature field either by code looks like below.
PdfLoadedPage page = loadedDocument.Pages[0] as PdfLoadedPage;
PdfCertificate certificate = new PdfCertificate(pfxMemoryStream, password);
// pdf signed here
PdfSignature pdfSignature = new PdfSignature(loadedDocument, page, certificate, "Signature");
2) I am using syncfusion license in my code. So it is not a license issue. :)
Can you tell me what is the issue here?
Thank you,
Surya