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