Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a digital certificate that identifies an user. I need to use it to Digitally sign pdf files.

Does anyone have an example that does not uses a third party component? I need to get this done but it would be nice to fully understand how things are done.

C# Examples please :)

share|improve this question
Please read the white paper on iText and digital signatures: itextpdf.com/book/digitalsignatures – Bruno Lowagie Sep 18 '12 at 7:57

closed as not constructive by Will Apr 30 at 21:04

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

5 Answers

up vote 25 down vote accepted

The open source iTextSharp library will allow you to do this. Here's a post explaining how to digitally sign a pdf file. If you don't want to use a third party library then you can implement it yourself but it could be a tough task -> you can start by reading the pdf specification (8.6MB)

share|improve this answer
5  
Any open source end-user app that does this? Preferably that runs on Mac OS X. – adib Oct 4 '11 at 13:51
I wan to use this in web application ,any code link etc. – Usman Y May 9 at 13:51
@UsmanY, there's a link in my answer with code example. – Darin Dimitrov May 9 at 14:19

Proper PDF signing is a very sophisticated task. There exist a number of files that don't conform to the PDF specification (broken xrefs etc) and your code must handle all of them. Then various Acrobat versions treat certain things in signed fields differently. So if you need to do the task (rather than study how it works) you should rely on third-party solution, such as our PDFBlackbox components.

share|improve this answer
Thank you for the tip ;) I did not knew PDFBlackBox – Sergio Dec 22 '08 at 9:53

Take a look at this article on CodeProject

share|improve this answer

Digitally signing a PDF document without using a third-party component entails a great deal of work and is generally best avoided.

Components do all the hard work for you, so you don't have to. You should find there are some excellent free PDF components available that will suit your needs.

The following example written in C# shows how simple it is to digitally sign a PDF document using ABCpdf:

Doc theDoc = new Doc();
theDoc.Read(Server.MapPath("../Rez/Authorization.pdf"));
Signature theSig = (Signature)theDoc.Form["Signature"];
theSig.Location = "Washington";
theSig.Reason = "Schedule Agreed";
theSig.Sign(Server.MapPath("../Rez/JohnSmith.pfx"), "111111");
theDoc.Save(Server.MapPath("Signed.pdf"));

Source: ABCpdf documentation - Sign method

share|improve this answer

Lost my first answer. May want to give DocQ a try to link text They have their own cert and can do this for you for free/cheap to seal and encrypt PDFs. They also have an API you can use.

share|improve this answer
I need the users to be able to use their own certificates. Got this working now using iTextSharp – Sergio May 11 '10 at 8:51

Not the answer you're looking for? Browse other questions tagged or ask your own question.