Skip to content

Commit fe35f4e

Browse files
author
duke
committed
Backport e9a62d79cdc43e5eb141f1d47624d0f6fe05989d
1 parent b84eb05 commit fe35f4e

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

src/java.base/share/classes/sun/security/ssl/KeyShareExtension.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -46,7 +46,7 @@ final class KeyShareExtension {
4646
new CHKeyShareProducer();
4747
static final ExtensionConsumer chOnLoadConsumer =
4848
new CHKeyShareConsumer();
49-
static final HandshakeAbsence chOnTradAbsence =
49+
static final HandshakeAbsence chOnTradeAbsence =
5050
new CHKeyShareOnTradeAbsence();
5151
static final SSLStringizer chStringizer =
5252
new CHKeyShareStringizer();

src/java.base/share/classes/sun/security/ssl/PreSharedKeyExtension.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ final class PreSharedKeyExtension {
5858
new CHPreSharedKeyOnLoadAbsence();
5959
static final HandshakeConsumer chOnTradeConsumer =
6060
new CHPreSharedKeyUpdate();
61-
static final HandshakeAbsence chOnTradAbsence =
61+
static final HandshakeAbsence chOnTradeAbsence =
6262
new CHPreSharedKeyOnTradeAbsence();
6363
static final SSLStringizer chStringizer =
6464
new CHPreSharedKeyStringizer();

src/java.base/share/classes/sun/security/ssl/SSLExtension.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, 2024, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -142,7 +142,7 @@ enum SSLExtension implements SSLStringizer {
142142
SupportedGroupsExtension.chOnLoadConsumer,
143143
null,
144144
null,
145-
SupportedGroupsExtension.chOnTradAbsence,
145+
SupportedGroupsExtension.chOnTradeAbsence,
146146
SupportedGroupsExtension.sgsStringizer),
147147
EE_SUPPORTED_GROUPS (0x000A, "supported_groups",
148148
SSLHandshake.ENCRYPTED_EXTENSIONS,
@@ -433,7 +433,7 @@ enum SSLExtension implements SSLStringizer {
433433
KeyShareExtension.chOnLoadConsumer,
434434
null,
435435
null,
436-
KeyShareExtension.chOnTradAbsence,
436+
KeyShareExtension.chOnTradeAbsence,
437437
KeyShareExtension.chStringizer),
438438
SH_KEY_SHARE (0x0033, "key_share",
439439
SSLHandshake.SERVER_HELLO,
@@ -486,7 +486,7 @@ enum SSLExtension implements SSLStringizer {
486486
PreSharedKeyExtension.chOnLoadConsumer,
487487
PreSharedKeyExtension.chOnLoadAbsence,
488488
PreSharedKeyExtension.chOnTradeConsumer,
489-
PreSharedKeyExtension.chOnTradAbsence,
489+
PreSharedKeyExtension.chOnTradeAbsence,
490490
PreSharedKeyExtension.chStringizer),
491491
SH_PRE_SHARED_KEY (0x0029, "pre_shared_key",
492492
SSLHandshake.SERVER_HELLO,

src/java.base/share/classes/sun/security/ssl/SupportedGroupsExtension.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2025, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -47,7 +47,7 @@ final class SupportedGroupsExtension {
4747
new CHSupportedGroupsProducer();
4848
static final ExtensionConsumer chOnLoadConsumer =
4949
new CHSupportedGroupsConsumer();
50-
static final HandshakeAbsence chOnTradAbsence =
50+
static final HandshakeAbsence chOnTradeAbsence =
5151
new CHSupportedGroupsOnTradeAbsence();
5252
static final SSLStringizer sgsStringizer =
5353
new SupportedGroupsStringizer();

0 commit comments

Comments
 (0)