This is an automated email from the ASF dual-hosted git repository.
ChristopherSchultz 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 8bd1bff392 Add Brainpool TLS named groups support
8bd1bff392 is described below
commit 8bd1bff3921a5668909c0b73a49e9df03a7fc6ee
Author: Christopher Schultz <[email protected]>
AuthorDate: Mon Jun 15 09:28:22 2026 -0400
Add Brainpool TLS named groups support
---
java/org/apache/tomcat/util/net/openssl/ciphers/Group.java | 14 ++++++++++++++
webapps/docs/changelog.xml | 4 ++++
2 files changed, 18 insertions(+)
diff --git a/java/org/apache/tomcat/util/net/openssl/ciphers/Group.java
b/java/org/apache/tomcat/util/net/openssl/ciphers/Group.java
index 670d79673d..84ab773147 100644
--- a/java/org/apache/tomcat/util/net/openssl/ciphers/Group.java
+++ b/java/org/apache/tomcat/util/net/openssl/ciphers/Group.java
@@ -40,6 +40,20 @@ public enum Group {
* NIST P-521 (secp521r1) elliptic curve group.
*/
secp521r1(0x0019),
+ /**
+ * Brainpool P-256 (brainpoolP256r1) elliptic curve group.
+ */
+ brainpoolP256r1(0x001A),
+
+ /**
+ * Brainpool P-384 (brainpoolP384r1) elliptic curve group.
+ */
+ brainpoolP384r1(0x001B),
+
+ /**
+ * Brainpool P-512 (brainpoolP512r1) elliptic curve group.
+ */
+ brainpoolP512r1(0x001C),
/**
* Curve25519 elliptic curve group.
*/
diff --git a/webapps/docs/changelog.xml b/webapps/docs/changelog.xml
index fb8a726aea..72c735d6f7 100644
--- a/webapps/docs/changelog.xml
+++ b/webapps/docs/changelog.xml
@@ -360,6 +360,10 @@
When processing an OpenSSL cipher specification, fully align the order
of the resulting ciphers with the order produced by OpenSSL. (markt)
</fix>
+ <add>
+ Add support for Brainpool TLS groups. Patch provided by YStankov.
+ (schultz)
+ </add>
</changelog>
</subsection>
<subsection name="Jasper">
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]