From 7a64bb9766e1710e3e5a425e65038a44021fcfd0 Mon Sep 17 00:00:00 2001 From: Loganaden Velvindron Date: Sat, 19 Jul 2025 10:23:15 +0400 Subject: [PATCH] Add support for X25519MLKEM768 (#21435) Signed-off-by: Bhuvanesh Fokeer Signed-off-by: Nakul Baboolall Signed-off-by: Sehun Bissessur --- internal/crypto/crypto.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/crypto/crypto.go b/internal/crypto/crypto.go index 5a82fd893..f4a9b943c 100644 --- a/internal/crypto/crypto.go +++ b/internal/crypto/crypto.go @@ -74,5 +74,5 @@ func TLSCiphersBackwardCompatible() []uint16 { // TLSCurveIDs returns a list of supported elliptic curve IDs // in preference order. func TLSCurveIDs() []tls.CurveID { - return []tls.CurveID{tls.CurveP256, tls.X25519, tls.CurveP384, tls.CurveP521} + return []tls.CurveID{tls.X25519MLKEM768, tls.CurveP256, tls.X25519, tls.CurveP384, tls.CurveP521} }