What versions of Java will support TLS1.1

不羁的心 提交于 2019-12-26 08:44:09

问题


What versions of Java will support TLS1.1 I just need the exact java version and update like JDK 7uXX

Reason for this question I am facing an issue connecting TLS1.1 with Java 1.7 . In most of the document I have read its supports but we have to enabled it manually. Even though its not working after enabling.

While googled I Got information like it will work only with java 7u95.

FYI Java JDK does not enable TLS v1.1 and TLS v1.2 by default in clients: http://docs.oracle.com/javase/7/docs/technotes/guides/security/SunProviders.html#tlsprotonote jdk.tls.client.protocols system property has been introduced to allow controlling the underlying platform TLS implementation and enabling specific protocols on the client. This system property is available in all JDK 8 releases, or after Java 7 update 95 (January 2016) and Java 6 update 121 (July 2016). Example of use: -Djdk.tls.client.protocols=TLSv1.2

Link : http://communities.rightnow.com/posts/cb48420cb0


回答1:


All JDK7 versions support TLS1.1 For JDK6 (2006 to end of public updates 2013) : TLS v1.1 (JDK 6 update 111 and above)



来源:https://stackoverflow.com/questions/45104761/what-versions-of-java-will-support-tls1-1

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!