Not sure who to ask, but is there a list of supported canonicalization methods? How about for Java 6's XML Digital Signature code?

There are only the two include/exclusive versions defined in javax.xml.crypto.dsig CanonicalizationMethod (each with/without comments) that are basically like: http://www.w3.org/TR/2001/REC-xml-c14n-20010315

Is there a way to use the latest, like "http://www.w3.org/TR/xml-c14n11"; or "http://www.w3.org/TR/2008/REC-xml-c14n11-20080502";? I gave these a try on Java 6 and they were not found, so not sure if I have the wrong literals or they are not supported. Is anything supported more than those defined in CanonicalizationMethod? I found that I could use RSA_SHA512 SignatureMethod with "http://www.w3.org/2001/04/xmldsig-more#rsa-sha512"; even though it's not defined as a constant in there either.

Thanks for any tips...

David

Reply via email to