From fd741a88e8bc73a9db6d4283bb54daab1760b442 Mon Sep 17 00:00:00 2001 From: Hai-May Chao Date: Sun, 21 Jul 2024 17:05:46 +0000 Subject: [PATCH] 8327538: The SSLExtension class specifies incorrect values for heartbeat per RFC 6520 and post_handshake_auth per RFC 8446 Reviewed-by: wetmore --- .../share/classes/sun/security/ssl/SSLExtension.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/java.base/share/classes/sun/security/ssl/SSLExtension.java b/src/java.base/share/classes/sun/security/ssl/SSLExtension.java index 2a9239fac95..2cb74fb1056 100644 --- a/src/java.base/share/classes/sun/security/ssl/SSLExtension.java +++ b/src/java.base/share/classes/sun/security/ssl/SSLExtension.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2018, 2024, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -181,7 +181,7 @@ enum SSLExtension implements SSLStringizer { USE_SRTP (0x000E, "use_srtp"), // Extensions defined in RFC 6520 (TLS and DTLS Heartbeat Extension) - HEARTBEAT (0x000E, "heartbeat"), + HEARTBEAT (0x000F, "heartbeat"), // Extensions defined in RFC 7301 (TLS Application-Layer Protocol Negotiation Extension) CH_ALPN (0x0010, "application_layer_protocol_negotiation", @@ -406,7 +406,7 @@ enum SSLExtension implements SSLStringizer { CertificateAuthoritiesExtension.ssStringizer), OID_FILTERS (0x0030, "oid_filters"), - POST_HANDSHAKE_AUTH (0x0030, "post_handshake_auth"), + POST_HANDSHAKE_AUTH (0x0031, "post_handshake_auth"), CH_SIGNATURE_ALGORITHMS_CERT (0x0032, "signature_algorithms_cert", SSLHandshake.CLIENT_HELLO,