From efe9fc7df8b336301e95cb04612ef30f2ca4c9f5 Mon Sep 17 00:00:00 2001 From: UnaPibaGeek Date: Thu, 19 Feb 2026 14:33:27 -0300 Subject: [PATCH] fix: normalize NamedGroup string for X25519 and X448 to IANA names --- tls/tls_names.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tls/tls_names.go b/tls/tls_names.go index eebe0626..614f9706 100644 --- a/tls/tls_names.go +++ b/tls/tls_names.go @@ -439,8 +439,8 @@ func init() { curveNames[26] = "brainpoolP256r1" curveNames[27] = "brainpoolP384r1" curveNames[28] = "brainpoolP512r1" - curveNames[29] = "ecdh_x25519" // TEMPORARY -- expires 1Mar2018 - curveNames[30] = "ecdh_x448" // TEMPORARY -- expires 1Mar2018 + curveNames[29] = "x25519" + curveNames[30] = "x448" curveNames[256] = "ffdhe2048" curveNames[257] = "ffdhe3072" curveNames[258] = "ffdhe4096"