Click here to Skip to main content
15,881,898 members
Articles / Web Development / ASP.NET

E-signing PDF documents with iTextSharp

Rate me:
Please Sign up or sign in to vote.
4.86/5 (53 votes)
17 Jun 2006LGPL33 min read 956.3K   25.3K   144   204
An example demonstrating how to sign PDF documents with the iTextSharp library.

Sample Image - Esignature.jpg

Introduction

In this article, I will present a simple source code allowing you to digitally sign a PDF document and modify its metadata. I will use the excellent and free port of iText library: iTextSharp that can be downloaded here. You'll need Visual Studio 2005 to be able to open and build the project.

If you don’t know what digital signatures are or how they work, you can go here or here, or simply ask Google :)

iTextSharp provides a lot of interesting features to create and manipulate PDF documents, but in this article, we will only use digital signature functions. I will also use some function to manipulate PKCS#12 certificates; the only thing you need to know here is that our digital signature will use a private key extracted from a PKCS#12 certificate.

Getting started

So the first thing you have to do is to install a certificate on your browser. If you don’t have one, you can install the demo certificate from here. Then, extract the PKCS#12 certificate as described below:

  • Open Internet Explorer and click on Tools, then Internet Options.
  • Go to the 'Content' tab and click 'Certificates'.
  • Choose a certificate from the list and click Export.
  • Follow the wizard, and when asked, choose to include private key with the extracted certificate.
  • Enter a password when prompted (don't give an empty one!!!)

You are now ready to use the code provided in this article. Using the signature example:

  1. Compile and run the example.
  2. Browse to the PDF source file you want to sign.
  3. Browse and choose a destination PDF file.
  4. Add/modify the PDF meta data if you want.
  5. Browse to the certificate (the .pfx file) you just extracted and choose it.
  6. Give the password you used to extract the certificate.
  7. Add signature information if needed (reason, contact, and location).
  8. Click the Sign button.

In the debug box, you’ll see the operation’s progress. If everything goes well, open your explorer and browse to the location you entered for the target file, open this file with Adobe Acrobat reader, and your document is signed! =).

Now, how will all this work?

In the source code provided with this article, I wrote a library called PDFSigner. It’s a helper package that uses iTextSharp and doed everything you need for digital signatures. It contains three classes:

  • Cert: this class is used to hold a certificate and extract the needed information for the signature; the most important method in this class is processCert (will be explained below).
  • MetaData: holds the PDF metadata.
  • PDFSigner: the construction of this class takes a Cert object and, if needed, a MetaData object. The most important method here is the Sign method (will be explained below).

processCet method

C#
private void processCert()
{
    string alias = null;
    PKCS12Store pk12;

    //First we'll read the certificate file
    pk12 = new PKCS12Store(new FileStream(this.Path, FileMode.Open, 
                               FileAccess.Read), this.password.ToCharArray());

    //then Iterate throught certificate entries to find the private key entry
    IEnumerator i = pk12.aliases();
    while (i.MoveNext())
    {
        alias = ((string)i.Current);
        if (pk12.isKeyEntry(alias))
            break;
    }

    this.akp = pk12.getKey(alias).getKey();
    X509CertificateEntry[] ce = pk12.getCertificateChain(alias);
    this.chain = new org.bouncycastle.x509.X509Certificate[ce.Length];
    for (int k = 0; k < ce.Length; ++k)
        chain[k] = ce[k].getCertificate();
}

This method reads the certificate and iterates through its entries to find the private key entry, then extracts it. It also construct the certificate's chain if available.

Sign method

C#
public void Sign(string SigReason, string SigContact, string SigLocation, bool visible)
{
    PdfReader reader = new PdfReader(this.inputPDF);
    //Activate MultiSignatures
    PdfStamper st = PdfStamper.CreateSignature(reader, 
       new FileStream(this.outputPDF, FileMode.Create, FileAccess.Write), '\0', null, true);
    //To disable Multi signatures uncomment this line :
    //     every new signature will invalidate older ones !
    //PdfStamper st = PdfStamper.CreateSignature(reader, 
      new FileStream(this.outputPDF, FileMode.Create, FileAccess.Write), '\0'); 

    st.MoreInfo = this.metadata.getMetaData();
    st.XmpMetadata = this.metadata.getStreamedMetaData();
    PdfSignatureAppearance sap = st.SignatureAppearance;
    
    sap.SetCrypto(this.myCert.Akp, this.myCert.Chain, null, 
                  PdfSignatureAppearance.WINCER_SIGNED);
    sap.Reason = SigReason;
    sap.Contact = SigContact;
    sap.Location = SigLocation;
    if (visible)
        sap.SetVisibleSignature(new iTextSharp.text.Rectangle(100, 100, 250, 150), 1, null);
    
    st.Close();
}

This function reads the content of a given PDF, then it uses the read data to create a new PDF using PDFStamper. PDFStamper is a PDF Writer that can sign PDF documents. The signature appearance can be configured so you can add a reason, a contact, and a location attribute to the signature. The SetCrypto method allows us to sign the document using the private key and chain certificate we extracted from the certificate file. And finally, SetVisibleSignature is used if you need to add a visible signature to the document. PDFReader, PDFStamper and PdfSignatureAppearance are provided by the iTextSharp library.

Well, that’s all for now :) I hope that you found my first article useful … If you have any questions or have any problems to build/run this example, don’t hesitate to post a comment.

License

This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)


Written By
Technical Lead
France France
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionPDFA Pin
Member 154444796-Oct-22 1:50
Member 154444796-Oct-22 1:50 
QuestionWhere to find .pfx file for local testing Pin
amit sahani11-Apr-22 1:51
amit sahani11-Apr-22 1:51 
PraiseThanks Pin
Member 155910345-Apr-22 5:54
Member 155910345-Apr-22 5:54 
QuestionThanks a lot Pin
Member 1300730625-Mar-20 9:35
Member 1300730625-Mar-20 9:35 
QuestionError using a certificate Pin
Nadir Muhammed3-Nov-19 2:54
professionalNadir Muhammed3-Nov-19 2:54 
PraisePerfect Pin
Jon Sagara22-Oct-19 5:47
Jon Sagara22-Oct-19 5:47 
BugThe selected certificate has errors not valid for usage Pin
Mayur Pansheriya24-Dec-18 2:01
Mayur Pansheriya24-Dec-18 2:01 
QuestionAdd different field in digital signature and change font Pin
Member 1228073828-Sep-17 23:59
Member 1228073828-Sep-17 23:59 
QuestionError : Item has already been added ¿? Pin
Member 1300129415-Feb-17 3:46
Member 1300129415-Feb-17 3:46 
QuestionHow to add two different signatures in pdf? Pin
ramin_37092-Aug-16 2:06
ramin_37092-Aug-16 2:06 
QuestionUse .CER instead of .PFX Pin
Sushil.Agarwal11-Mar-16 20:28
Sushil.Agarwal11-Mar-16 20:28 
QuestionIts a digital signature but not e-signature. Pin
abhishek.mumbai13-Sep-15 23:15
abhishek.mumbai13-Sep-15 23:15 
GeneralMy vote of 3 Pin
Manoj Natarajan29-Apr-15 2:23
professionalManoj Natarajan29-Apr-15 2:23 
QuestionVerify the signature? Pin
Member 30546992-Mar-15 6:57
Member 30546992-Mar-15 6:57 
QuestionsetCrypto Pin
Dara Keon8-Jan-15 5:32
Dara Keon8-Jan-15 5:32 
Bugsouci de l'auteur Pin
basilic00124-Nov-14 3:43
basilic00124-Nov-14 3:43 
Questioni get error stating that signature defined, must be closed within signatureappearance Pin
Member 107366893-Jun-14 7:27
Member 107366893-Jun-14 7:27 
AnswerRe: i get error stating that signature defined, must be closed within signatureappearance Pin
Ravindra Sadaphule9-Aug-14 22:15
Ravindra Sadaphule9-Aug-14 22:15 
GeneralRe: i get error stating that signature defined, must be closed within signatureappearance Pin
Member 1073668912-Aug-14 4:33
Member 1073668912-Aug-14 4:33 
QuestionRevision label and picture as signature Pin
Rui Frazao26-Feb-14 0:18
Rui Frazao26-Feb-14 0:18 
QuestionNot able to download source code since last 2 months using my credentials Pin
Member 104391409-Feb-14 2:34
Member 104391409-Feb-14 2:34 
QuestionCreate pfx file for domain users Pin
rilov10-Oct-13 10:59
rilov10-Oct-13 10:59 
GeneralThanks a lot Pin
RufinaTrehub11-Sep-13 5:13
RufinaTrehub11-Sep-13 5:13 
GeneralMy vote of 5 Pin
Rok Banko2-Sep-13 3:56
Rok Banko2-Sep-13 3:56 
GeneralThanks man. Pin
Member 59097829-May-13 21:47
Member 59097829-May-13 21:47 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.