This is an automated email from the ASF dual-hosted git repository.

markt-asf pushed a commit to branch 11.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/11.0.x by this push:
     new 0e66503f43 CCM8 ciphers are limited to 64 strength bits
0e66503f43 is described below

commit 0e66503f4337c16b5d47d595b47594c625210a27
Author: Mark Thomas <[email protected]>
AuthorDate: Fri Jun 12 16:54:42 2026 +0100

    CCM8 ciphers are limited to 64 strength bits
---
 .../tomcat/util/net/openssl/ciphers/Cipher.java    | 22 +++++++++++-----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/java/org/apache/tomcat/util/net/openssl/ciphers/Cipher.java 
b/java/org/apache/tomcat/util/net/openssl/ciphers/Cipher.java
index 5d44ffce8f..42add3b912 100644
--- a/java/org/apache/tomcat/util/net/openssl/ciphers/Cipher.java
+++ b/java/org/apache/tomcat/util/net/openssl/ciphers/Cipher.java
@@ -2778,7 +2778,7 @@ public enum Cipher {
             false,
             EncryptionLevel.MEDIUM,
             true,
-            128,
+            64,
             128,
             null,
             null
@@ -4455,7 +4455,7 @@ public enum Cipher {
             false,
             EncryptionLevel.MEDIUM,
             false,
-            128,
+            64,
             128,
             null,
             null
@@ -4472,7 +4472,7 @@ public enum Cipher {
             false,
             EncryptionLevel.MEDIUM,
             false,
-            256,
+            64,
             256,
             null,
             null
@@ -4489,7 +4489,7 @@ public enum Cipher {
             false,
             EncryptionLevel.MEDIUM,
             false,
-            128,
+            64,
             128,
             null,
             null
@@ -4506,7 +4506,7 @@ public enum Cipher {
             false,
             EncryptionLevel.MEDIUM,
             false,
-            256,
+            64,
             256,
             null,
             null
@@ -4591,7 +4591,7 @@ public enum Cipher {
             false,
             EncryptionLevel.MEDIUM,
             false,
-            128,
+            64,
             128,
             null,
             null
@@ -4608,7 +4608,7 @@ public enum Cipher {
             false,
             EncryptionLevel.MEDIUM,
             false,
-            256,
+            64,
             256,
             null,
             null
@@ -4625,7 +4625,7 @@ public enum Cipher {
             false,
             EncryptionLevel.MEDIUM,
             false,
-            128,
+            64,
             128,
             null,
             null
@@ -4642,7 +4642,7 @@ public enum Cipher {
             false,
             EncryptionLevel.MEDIUM,
             false,
-            256,
+            64,
             256,
             null,
             null
@@ -4694,7 +4694,7 @@ public enum Cipher {
             false,
             EncryptionLevel.MEDIUM,
             false,
-            128,
+            64,
             128,
             null,
             null
@@ -4711,7 +4711,7 @@ public enum Cipher {
             false,
             EncryptionLevel.MEDIUM,
             false,
-            256,
+            64,
             256,
             null,
             null


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to