Does Tomcat support TLS v1.2?

前端 未结 4 1652
暖寄归人
暖寄归人 2020-12-14 20:35

I want to know if Apache Tomcat supports TLS v1.2 protocol. I didn\'t find any documentation about this! Thanks!

4条回答
  •  一整个雨季
    2020-12-14 21:03

    I was also looking to upgrade sslProtocol to TLSv1.1 and as mentioned in the below links on Java6 and Java7

    Java6 http://docs.oracle.com/javase/6/docs/technotes/guides/security/SunProviders.html Java7 http://docs.oracle.com/javase/7/docs/technotes/guides/security/SunProviders.html

    The SSLContext supported in Java6 are SSL, TLSv1 and in Java7 SSL, TLSv1, TLSv1.1 and TLSv1.2 are supported.

    So, to enable TLSv1.1 or TLSv1.2 in tomcat, just upgrade to Java7 and change the sslProtocol in Connector in server.xml of tomcat.

提交回复
热议问题