This is an automated email from the ASF dual-hosted git repository.
rmaucher 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 4f7d2b55e8 Update OpenSSL version numbers
4f7d2b55e8 is described below
commit 4f7d2b55e8f6fee41b5ac793fbcb1374f9b689e1
Author: remm <[email protected]>
AuthorDate: Thu Apr 30 14:19:33 2026 +0200
Update OpenSSL version numbers
---
test/org/apache/tomcat/util/net/openssl/ciphers/TesterOpenSSL.java | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/test/org/apache/tomcat/util/net/openssl/ciphers/TesterOpenSSL.java
b/test/org/apache/tomcat/util/net/openssl/ciphers/TesterOpenSSL.java
index 4ba9cffe16..455c9b7611 100644
--- a/test/org/apache/tomcat/util/net/openssl/ciphers/TesterOpenSSL.java
+++ b/test/org/apache/tomcat/util/net/openssl/ciphers/TesterOpenSSL.java
@@ -49,8 +49,10 @@ public class TesterOpenSSL {
} catch (IOException ioe) {
versionString = "";
}
- if (versionString.startsWith("OpenSSL 4.0.")) {
- // Note: Gump currently tests 12.x with OpenSSL HEAD which is
currently 4.0.x
+ // Note: Gump currently tests 12.x with OpenSSL HEAD which is
currently 4.1.x
+ if (versionString.startsWith("OpenSSL 4.1.")) {
+ VERSION = 40100;
+ } else if (versionString.startsWith("OpenSSL 4.0.")) {
VERSION = 40000;
} else if (versionString.startsWith("OpenSSL 3.6.")) {
VERSION = 30600;
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]