mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
8291949: Unexpected extending of SupportedGroups
Reviewed-by: djelinski, wetmore
This commit is contained in:
parent
b5707b0376
commit
ea2c82e74f
2 changed files with 4 additions and 5 deletions
|
@ -29,7 +29,6 @@ import sun.security.action.GetPropertyAction;
|
|||
import sun.security.ssl.SSLExtension.ExtensionConsumer;
|
||||
import sun.security.ssl.SSLExtension.SSLExtensionSpec;
|
||||
import sun.security.ssl.SSLHandshake.HandshakeMessage;
|
||||
import sun.security.ssl.SupportedGroupsExtension.SupportedGroups;
|
||||
import sun.security.util.HexDumpEncoder;
|
||||
|
||||
import javax.crypto.Cipher;
|
||||
|
@ -381,7 +380,7 @@ final class SessionTicketExtension {
|
|||
}
|
||||
|
||||
private static final class T12CHSessionTicketProducer
|
||||
extends SupportedGroups implements HandshakeProducer {
|
||||
implements HandshakeProducer {
|
||||
T12CHSessionTicketProducer() {
|
||||
}
|
||||
|
||||
|
@ -480,7 +479,7 @@ final class SessionTicketExtension {
|
|||
|
||||
|
||||
private static final class T12SHSessionTicketProducer
|
||||
extends SupportedGroups implements HandshakeProducer {
|
||||
implements HandshakeProducer {
|
||||
T12SHSessionTicketProducer() {
|
||||
}
|
||||
|
||||
|
|
|
@ -327,7 +327,7 @@ final class SupportedGroupsExtension {
|
|||
* the ClientHello handshake message.
|
||||
*/
|
||||
private static final class CHSupportedGroupsProducer
|
||||
extends SupportedGroups implements HandshakeProducer {
|
||||
implements HandshakeProducer {
|
||||
// Prevent instantiation of this class.
|
||||
private CHSupportedGroupsProducer() {
|
||||
// blank
|
||||
|
@ -472,7 +472,7 @@ final class SupportedGroupsExtension {
|
|||
* the EncryptedExtensions handshake message.
|
||||
*/
|
||||
private static final class EESupportedGroupsProducer
|
||||
extends SupportedGroups implements HandshakeProducer {
|
||||
implements HandshakeProducer {
|
||||
|
||||
// Prevent instantiation of this class.
|
||||
private EESupportedGroupsProducer() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue