I haven't been able to find any reason of why should anyone prefer to implement a CAdES oriented electronic signature software solution over a XAdES oriented one.

There are a lot more open libraries and implementation cases and examples of XAdES on the internet, but still, I don't believe that is the reason why people decide on using XAdES over CAdES.

Is it because XAdES is XML oriented and software developers tend to love anything XML related? Is there any scenario where CAdES is just outright the best option to use over XAdES?

Thank you!

For reference:

  • CAdES is CMS/PKCS#7 in advanced form (supports timestamping)
  • XAdES is XML-DSig in advanced form (supports timestamping)
link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

One advantage of CAdES is that it generally causes less interoperability problems, mostly because the XML-DSig standard allows a lot of options, XSLT, XPointer Framework and the various forms of XML canonicalization just to name a few. CAdES would be less demanding if you only needed to deal with strictly DER-encoded signatures (the picture changes though once you need to deal with BER encodings).

Another advantage of CAdES over XAdES is a scenario where you are required to produce "attached" signatures on large data chunks, i.e. you want the result to be one single chunk of data that contains both the original data and the signature. The equivalent of an attached CAdES signature (i.e. the original input data is stored in the EncapContentInfo element of the CMS structure) is an Enveloping Signature. If you are required to produce such a kind of signature there is a high probability that you will run into problems when dealing with large input data if your XAdES implementation is DOM-based (those I know of are) - your machine will eventually run out of memory.

Performance would be another argument where CAdES is to be favoured. Whereas the message digest computation of CAdES is typically done directly on the raw bytes of the input data, XML signatures that are computed on XML documents involve a loth of overhead such as evaluation of XPath expressions, XSLT transforms, Base64 en-/decoding and Canonicalization... and in theory even more than once should there be several Tranform elements.

If you are building an archiving system for long-term validation of signatures where a lot of signatures need to be stored, CAdES would also be the preferred format due to its compactness in comparison to the textual XAdES format.

link|improve this answer
Thank you for your great answer! We are going to investigate more on the different scenarios you mention. – ABE Jul 5 '11 at 16:22
feedback

Your Answer

 
or
required, but never shown

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