Details
-
Type:
Bug
-
Status: Closed
-
Priority:
P4
-
Resolution: Fixed
-
Affects Version/s: 8
-
Fix Version/s: 8
-
Component/s: security-libs
-
Labels:
-
Subcomponent:
-
Introduced In Version:
-
Resolved In Build:b43
-
CPU:generic
-
OS:generic
-
Verification:Verified
Backports
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8240002 | openjdk7u | Weijun Wang | P4 | Resolved | Fixed | master |
Description
sun.security.timestamp.HttpTimestamper has:
public HttpTimestamper(URI tsaURI) {
if (!tsaURI.getScheme().equalsIgnoreCase("http"))
throw new IllegalArgumentException("TSA must be an HTTP URI");
this.tsaURI = tsaURI;
}
It should also support TSA with a https URI.
public HttpTimestamper(URI tsaURI) {
if (!tsaURI.getScheme().equalsIgnoreCase("http"))
throw new IllegalArgumentException("TSA must be an HTTP URI");
this.tsaURI = tsaURI;
}
It should also support TSA with a https URI.
Attachments
Issue Links
- backported by
-
JDK-8240002 HttpTimestamper should accept https URI
-
- Resolved
-