且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Tomcat是否支持TLS v1.2?

更新时间:2022-12-04 15:26:13

TLS版本1.2.由于Tomcat使用JSSE作为基础SSL库,因此从JDK版本1.7开始应支持它.还要检查在Tomcat中启用的SSL密码套件.

TLS version 1.2 is supported by the Oracle JDK version 7, in the JSSE implementation. As Tomcat uses JSSE as underlying SSL library, it should be supported from JDK version 1.7 onwards. Also check your enabled SSL cipher suites in Tomcat.

如果您使用Apache作为代理,请检查Apache和基础OpenSSL文档.

If you are using Apache as a proxy, please check the Apache and underlying OpenSSL documentation.

一些链接:

http://docs.oracle. com/javase/7/docs/technotes/guides/security/enhancements-7.html (Java SE 7安全性增强)

http://docs.oracle.com/javase/7/docs/technotes/guides/security/enhancements-7.html (Java SE 7 Security Enhancements)

http://tomcat.apache.org/tomcat-5.5- doc/ssl-howto.html

http://tomcat.apache.org/tomcat-7.0- doc/ssl-howto.html