https://bz.apache.org/bugzilla/show_bug.cgi?id=67616
Bug ID: 67616
Summary: org/apache/tomcat/jni/SSL.java contains useless check
for old OpenSSL version
Product: Tomcat Native
Version: 2.0.6
Hardware: All
OS: All
Status: NEW
Severity: normal
Priority: P2
Component: Library
Assignee: [email protected]
Reporter: [email protected]
Target Milestone: ---
Tomcat Native 2.0 requires OpenSSL 3.0, but the class still contains useless
check:
> 75 static {
> 76 if (version() >= 0x1010100f) {
> 77 SSL_PROTOCOL_ALL = (SSL_PROTOCOL_TLSV1 | SSL_PROTOCOL_TLSV1_1
> | SSL_PROTOCOL_TLSV1_2 |
> 78 SSL_PROTOCOL_TLSV1_3);
> 79 } else {
> 80 SSL_PROTOCOL_ALL = (SSL_PROTOCOL_TLSV1 | SSL_PROTOCOL_TLSV1_1
> | SSL_PROTOCOL_TLSV1_2);
> 81 }
> 82 }
--
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]