This is an automated email from the ASF dual-hosted git repository.
markt-asf pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/main by this push:
new 813e8c7319 CCM8 ciphers are limited to 64 strength bits
813e8c7319 is described below
commit 813e8c731922f6e7c78581084b77c463c29092dd
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]