Skip to content
This repository was archived by the owner on Aug 27, 2022. It is now read-only.
/ lanai Public archive

Commit 9efd3d7

Browse files
committedOct 15, 2019
8231415: Better signatures in XML
Reviewed-by: weijun, mschoene, rhalade
1 parent 25642dd commit 9efd3d7

File tree

2 files changed

+16
-4
lines changed

2 files changed

+16
-4
lines changed
 

‎src/java.xml.crypto/share/classes/org/jcp/xml/dsig/internal/dom/DOMKeyInfoFactory.java

+8-2
Original file line numberDiff line numberDiff line change
@@ -170,9 +170,15 @@ public KeyInfo unmarshalKeyInfo(XMLStructure xmlStructure)
170170
"support DOM Level 2 and be namespace aware");
171171
}
172172
if ("KeyInfo".equals(tag) && XMLSignature.XMLNS.equals(namespace)) {
173-
return new DOMKeyInfo(element, new UnmarshalContext(), getProvider());
173+
try {
174+
return new DOMKeyInfo(element, new UnmarshalContext(), getProvider());
175+
} catch (MarshalException me) {
176+
throw me;
177+
} catch (Exception e) {
178+
throw new MarshalException(e);
179+
}
174180
} else {
175-
throw new MarshalException("invalid KeyInfo tag: " + namespace + ":" + tag);
181+
throw new MarshalException("Invalid KeyInfo tag: " + namespace + ":" + tag);
176182
}
177183
}
178184

‎src/java.xml.crypto/share/classes/org/jcp/xml/dsig/internal/dom/DOMXMLSignatureFactory.java

+8-2
Original file line numberDiff line numberDiff line change
@@ -192,9 +192,15 @@ private XMLSignature unmarshal(Node node, XMLCryptoContext context)
192192
"support DOM Level 2 and be namespace aware");
193193
}
194194
if ("Signature".equals(tag) && XMLSignature.XMLNS.equals(namespace)) {
195-
return new DOMXMLSignature(element, context, getProvider());
195+
try {
196+
return new DOMXMLSignature(element, context, getProvider());
197+
} catch (MarshalException me) {
198+
throw me;
199+
} catch (Exception e) {
200+
throw new MarshalException(e);
201+
}
196202
} else {
197-
throw new MarshalException("invalid Signature tag: " + namespace + ":" + tag);
203+
throw new MarshalException("Invalid Signature tag: " + namespace + ":" + tag);
198204
}
199205
}
200206

0 commit comments

Comments
 (0)
This repository has been archived.