From 422c2280124219385f97870d92e224bb74c1f6b7 Mon Sep 17 00:00:00 2001 From: Arne Date: Mon, 13 Jan 2025 17:30:37 +0100 Subject: [PATCH] Remove some unused ciphers for now --- src/main/java/eu/siacs/conversations/Config.java | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/main/java/eu/siacs/conversations/Config.java b/src/main/java/eu/siacs/conversations/Config.java index ba848af36..a87d40ea3 100644 --- a/src/main/java/eu/siacs/conversations/Config.java +++ b/src/main/java/eu/siacs/conversations/Config.java @@ -163,11 +163,6 @@ public final class Config { //only allow secure tls chipers now public static final String[] ENABLED_CIPHERS = { - //post quantum key agreement with traditional encryption - "TLS_ECDHE_KYBER_WITH_CHACHA20_POLY1305_SHA256", - //pre shared key for resource constrained devices (e.g. Alexa, IoT) - // with post quantum encryption - "TLS_PSK_WITH_AES_128_GCM_SHA256", //TLS 1.3 "TLS_AES_256_GCM_SHA384", "TLS_CHACHA20_POLY1305_SHA256", @@ -182,11 +177,6 @@ public final class Config { }; public static final String[] SECURE_CIPHERS = { - //post quantum key agreement with traditional encryption - "TLS_ECDHE_KYBER_WITH_CHACHA20_POLY1305_SHA256", - //pre shared key for resource constrained devices (e.g. Alexa, IoT) - // with post quantum encryption - "TLS_PSK_WITH_AES_128_GCM_SHA256", //TLS 1.3 "TLS_AES_256_GCM_SHA384", "TLS_CHACHA20_POLY1305_SHA256",