For one of my projects I need to validate a digitally signed XML document using the public key provided to me by the sender. I am using Java Cryptography to load the cert file, convert it to a X509Certificate and then validate the signature in the incoming XML document. I have tried and tested my code with other senders and it works fine, but for one of the senders' certs, I am getting the following exception. Google search seems to suggest that the cert is in a format that Java cannot decode or something like that.
Does anyone have an idea why this exception is occurring? Also, if it is true that the certificate is in a format that Java cannot understand, then can I use some tool to figure out what's wrong thus allowing me to ask the sender for a different cert?
Exception:
2012-09-20 10:14:33,423 ERROR [STDERR] javax.xml.crypto.MarshalException: Cannot create X509Certificate
2012-09-20 10:14:33,423 ERROR [STDERR] at org.jcp.xml.dsig.internal.dom.DOMX509Data.unmarshalX509Certificate(DOMX509Data.java:205)
2012-09-20 10:14:33,423 ERROR [STDERR] at org.jcp.xml.dsig.internal.dom.DOMX509Data.<init>(DOMX509Data.java:96)
2012-09-20 10:14:33,423 ERROR [STDERR] at org.jcp.xml.dsig.internal.dom.DOMKeyInfo.<init>(DOMKeyInfo.java:88)
2012-09-20 10:14:33,423 ERROR [STDERR] at org.jcp.xml.dsig.internal.dom.DOMXMLSignature.<init>(DOMXMLSignature.java:128)
2012-09-20 10:14:33,423 ERROR [STDERR] at org.jcp.xml.dsig.internal.dom.DOMXMLSignatureFactory.unmarshal(DOMXMLSignatureFactory.java:168)
2012-09-20 10:14:33,423 ERROR [STDERR] at org.jcp.xml.dsig.internal.dom.DOMXMLSignatureFactory.unmarshalXMLSignature(DOMXMLSignatureFactory.java:132)
2012-09-20 10:14:33,423 ERROR [STDERR] at javax.servlet.http.HttpServlet.service(HttpServlet.java:804)
2012-09-20 10:14:33,423 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
2012-09-20 10:14:33,423 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
2012-09-20 10:14:33,423 ERROR [STDERR] at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:97)
2012-09-20 10:14:33,423 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
2012-09-20 10:14:33,423 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
2012-09-20 10:14:33,423 ERROR [STDERR] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:230)
2012-09-20 10:14:33,423 ERROR [STDERR] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
2012-09-20 10:14:33,423 ERROR [STDERR] at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:183)
2012-09-20 10:14:33,423 ERROR [STDERR] at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:84)
2012-09-20 10:14:33,423 ERROR [STDERR] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
2012-09-20 10:14:33,423 ERROR [STDERR] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
2012-09-20 10:14:33,423 ERROR [STDERR] at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:157)
2012-09-20 10:14:33,423 ERROR [STDERR] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:111)
2012-09-20 10:14:33,423 ERROR [STDERR] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:262)
2012-09-20 10:14:33,423 ERROR [STDERR] at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
2012-09-20 10:14:33,423 ERROR [STDERR] at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:583)
2012-09-20 10:14:33,423 ERROR [STDERR] at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:446)
2012-09-20 10:14:33,423 ERROR [STDERR] at java.lang.Thread.run(Thread.java:662)
2012-09-20 10:14:33,423 ERROR [STDERR] Caused by: java.security.cert.CertificateException: Could not parse certificate: java.io.IOException: DerInputStream.getLength(): lengthTag=127, too big.
2012-09-20 10:14:33,423 ERROR [STDERR] at sun.security.provider.X509Factory.engineGenerateCertificate(X509Factory.java:109)
2012-09-20 10:14:33,423 ERROR [STDERR] at java.security.cert.CertificateFactory.generateCertificate(CertificateFactory.java:305)
2012-09-20 10:14:33,423 ERROR [STDERR] at org.jcp.xml.dsig.internal.dom.DOMX509Data.unmarshalX509Certificate(DOMX509Data.java:203)
2012-09-20 10:14:33,516 ERROR [STDERR] at org.jcp.xml.dsig.internal.dom.DOMX509Data.<init>(DOMX509Data.java:96)
2012-09-20 10:14:33,516 ERROR [STDERR] at org.jcp.xml.dsig.internal.dom.DOMKeyInfo.<init>(DOMKeyInfo.java:88)
2012-09-20 10:14:33,516 ERROR [STDERR] at org.jcp.xml.dsig.internal.dom.DOMXMLSignature.<init>(DOMXMLSignature.java:128)
2012-09-20 10:14:33,516 ERROR [STDERR] at org.jcp.xml.dsig.internal.dom.DOMXMLSignatureFactory.unmarshal(DOMXMLSignatureFactory.java:168)
2012-09-20 10:14:33,516 ERROR [STDERR] at org.jcp.xml.dsig.internal.dom.DOMXMLSignatureFactory.unmarshalXMLSignature(DOMXMLSignatureFactory.java:132)
10/3/2012: I re-posted this question on the crypto.stackexchange as I felt that that was the right place for it. Here is the link to that question
asn1parseoption. Possibly there is a byte with valueFFsomewhere in the certificate where it should not be (the highest bit says that there are more length bytes coming, and the rest is the number of bytes that should be expected, which would be7For 127 in decimals... – owlstead Sep 21 '12 at 20:09