8327538: The SSLExtension class specifies incorrect values for heartbeat per RFC 6520 and post_handshake_auth per RFC 8446
Reviewed-by: wetmore
This commit is contained in:
parent
ad498f57fc
commit
fd741a88e8
@ -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.
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||||
*
|
*
|
||||||
* This code is free software; you can redistribute it and/or modify it
|
* 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"),
|
USE_SRTP (0x000E, "use_srtp"),
|
||||||
|
|
||||||
// Extensions defined in RFC 6520 (TLS and DTLS Heartbeat Extension)
|
// 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)
|
// Extensions defined in RFC 7301 (TLS Application-Layer Protocol Negotiation Extension)
|
||||||
CH_ALPN (0x0010, "application_layer_protocol_negotiation",
|
CH_ALPN (0x0010, "application_layer_protocol_negotiation",
|
||||||
@ -406,7 +406,7 @@ enum SSLExtension implements SSLStringizer {
|
|||||||
CertificateAuthoritiesExtension.ssStringizer),
|
CertificateAuthoritiesExtension.ssStringizer),
|
||||||
|
|
||||||
OID_FILTERS (0x0030, "oid_filters"),
|
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",
|
CH_SIGNATURE_ALGORITHMS_CERT (0x0032, "signature_algorithms_cert",
|
||||||
SSLHandshake.CLIENT_HELLO,
|
SSLHandshake.CLIENT_HELLO,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user