Blog

All Blog Posts  |  Next Post  |  Previous Post

Signing and verifying PDF documents with TMS Cryptography Pack

Bookmarks: 

Friday, March 29, 2024

In a previous blog post, we discussed the signing of documents with tokens and proposed a simple tool to check the content of a PKCS#11 token. We also introduced digital signatures, X509, ASN.1, CMS, PDF and ETSI standards for signatures.
In this post, we simply introduce a 'proof of concept' application to sign and verify PDFs with PKCS#11 tokens: PDFSignVerify. The application is a proof of concept (PoC) because it is not possible to address all PDF versions and formats in a simple tool. Addressing all cases would resort to developing a complex app that is way beyond the scope of a cryptographic library.

Portable Document Format (PDF)

PDF specifications are laid out in an ISO standard [1]. Signatures can be added to PDF files in the form of Cryptographic Message Syntax (CMS) sequences [2] coded in ASN.1 DER (see aforementioned post). Our PDFSignVerify PoC uses the ETSI EN 319 141-1 and 141-2 standards [3]. In particular, as TMS Cryptography Pack doesn't support SHA1 for new signatures, we use the ESS signing-certificate-v2 attribute in the Signed Attribute sequence.

The Signed Attribute sequence is defined like this:

    id-aa-signingCertificateV2 OBJECT IDENTIFIER ::= { iso(1)
        member-body(2) us(840) rsadsi(113549) pkcs(1) pkcs9(9)
        smime(16) id-aa(2) 47 }

    SigningCertificateV2 ::=  SEQUENCE {
        certs        SEQUENCE OF ESSCertIDv2,
        policies     SEQUENCE OF PolicyInformation OPTIONAL
    }

    ESSCertIDv2 ::=  SEQUENCE {
        hashAlgorithm           AlgorithmIdentifier
               DEFAULT {algorithm id-sha256},
        certHash                 Hash,
        issuerSerial             IssuerSerial OPTIONAL
    }

    Hash ::= OCTET STRING

    IssuerSerial ::= SEQUENCE {
        issuer                   GeneralNames,
        serialNumber             CertificateSerialNumber
   }

The signature is applied to the ASN.1 encoding of the entire sequence and added to the CMS sequence, together with the message digest of the intial PDF file prepared according to section 12.8 of the ISO standard.

Using the application

The PoC app is very simple with Sign and Verify buttons that can be used once the PKCS#11 driver, the token password and the file to sign (or to verify) have been selected. The 'question mark' button gives access to the 'manual' for the app.



Conclusion

PDFSignVerify has been developed with TMS Cryptography Pack version 5.0 that will be issued in a few weeks. This version if fully written in Pascal Object and is currently being finalized with new classes but also with the deletion of deprecated algorithms, such as RIPEMD160.

The new PDF signatures have been successfully tested for interoperability with Adobe Acrobat Reader, FoxIT PDF Reader, PDF X-Change Editor and Microsoft Edge. However, PDF has many variants and signatures may not be recognized for all versions and flavours.

PDFSignVerify is free of use.

P.S.: feel free to report any issues to the Author via the TMS Cryptography Pack support page or directly by email


[1] ISO 32000-2:2020, Document Management, Portable Document Format (PDF)
[2] Cryptographic Message Syntax (CMS), RFC 5652, https://datatracker.ietf.org/doc/html/rfc5652
[3] ETSI EN 319 141-1 and 141-2, Electronic Signatures and Infrastructures (ESI), PAdES digital signatures



Bernard


Bookmarks: 

This blog post has received 2 comments.


1. Tuesday, April 9, 2024 at 12:02:30 PM

That sounds good. But how does this work?
1. If I sign the document, how can the receiver see if that it is signed, even if he does not have anything else as for example PDF-Xchange?
2. What happens if a document has to be signed multiple times.
3. What happens if a pdf-reader does not recognise the signing ? Is the PDF still readable or would the PDF get corrupted?

Krijger Harald


2. Tuesday, April 9, 2024 at 12:15:28 PM

Good questions.
1. Except when the signature is incorrect (which can happen due to the many PDF formats to address), the PDF tools I tested all recognize that the file has been signed. The signature type is ''invisible'' in Adobe''s terms and there is a ''visible'' type that has not been implemented in TMS CP at this stage (the issue is the location of this visible signature block that can overwrite a section if not properly set by a ''human'' user).
2. Same comment, TMS CP doesn''t provide capabilities for multiple signatures yet (I should rather say, not tested and would require a few tests before signing again). Now, you can add a signature with any PDF reader that allows it.
3. So far, all examples I had were an error message such as ''invalid signature'' or no signature. PDF objects are added to cater for the signature to the original PDF document and there are 2 cases: 1) these objects are ignored because their format is not recognized, or, 2) the signature doesn''t verify and you get the aforementioned error message.

bernard

Bernard Roussely




Add a new comment

You will receive a confirmation mail with a link to validate your comment, please use a valid email address.
All fields are required.



All Blog Posts  |  Next Post  |  Previous Post