-
Bug
-
Resolution: Fixed
-
P2
-
5.0u4
-
b01
-
generic
-
generic
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2137363 | 6 | Sean Mullan | P2 | Resolved | Fixed | b83 |
Please first read Comments section here and in 6317399.
In sun/security/util/ManifestDigester.java (5.0u4):
// wrong line 152
entries.put(new String(name.getBytes(), "UTF8"),
// correction:
entries.put(name,
// wrong lines 242-247
try {
// key is a UTF-8 string
e = (Entry) entries.get(new String(name.getBytes(), "UTF8"));
} catch (java.io.UnsupportedEncodingException uee) {
throw new IllegalStateException("UTF8 not available on platform");
}
// correction:
e = (Entry) entries.get(name);
In sun/security/util/ManifestDigester.java (5.0u4):
// wrong line 152
entries.put(new String(name.getBytes(), "UTF8"),
// correction:
entries.put(name,
// wrong lines 242-247
try {
// key is a UTF-8 string
e = (Entry) entries.get(new String(name.getBytes(), "UTF8"));
} catch (java.io.UnsupportedEncodingException uee) {
throw new IllegalStateException("UTF8 not available on platform");
}
// correction:
e = (Entry) entries.get(name);
- backported by
-
JDK-2137363 encoding bug (6317399): sun/security/util/ManifestDigester.java
-
- Resolved
-
- relates to
-
JDK-4924188 jarsigner fails to sign entries with non-english characters in their name
-
- Resolved
-
-
JDK-6317399 umbrella bug: various J2SE 5.0 encoding bugs with limited number of root causes
-
- Closed
-