Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
306 views
Welcome To Ask or Share your Answers For Others

1 Answer

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...