-
Bug
-
Resolution: Fixed
-
P4
-
21, 26
-
b16
-
generic
-
generic
A DESCRIPTION OF THE PROBLEM :
This enhancement request is for HttpClient to honor the namedGroups set on the configured SSLParameters.
Today you can set the namedGroups on the SSLParameters like so:
final SSLParameters sslParameters = new SSLParameters();
sslParameters.setNamedGroups(new String[]{namedGroup});
return HttpClient.newBuilder()
.sslContext(sslBundle.createSslContext())
.sslParameters(sslParameters)
.build();
When doing this today the namedGroups are dropped from the SSLParamters that are set on the HttpClient.
See Utils.java: https://github.com/openjdk/jdk/blob/master/src/java.net.http/share/classes/jdk/internal/net/http/common/Utils.java#L591
This enhancement request is for HttpClient to honor the namedGroups set on the configured SSLParameters.
Today you can set the namedGroups on the SSLParameters like so:
final SSLParameters sslParameters = new SSLParameters();
sslParameters.setNamedGroups(new String[]{namedGroup});
return HttpClient.newBuilder()
.sslContext(sslBundle.createSslContext())
.sslParameters(sslParameters)
.build();
When doing this today the namedGroups are dropped from the SSLParamters that are set on the HttpClient.
See Utils.java: https://github.com/openjdk/jdk/blob/master/src/java.net.http/share/classes/jdk/internal/net/http/common/Utils.java#L591
- relates to
-
JDK-8280494 (D)TLS signature schemes
-
- Resolved
-
-
JDK-8281236 (D)TLS key exchange named groups
-
- Resolved
-
- links to
-
Commit(master) openjdk/jdk/d7eeacf2
-
Review(master) openjdk/jdk/27292
There are no Sub-Tasks for this issue.