首页 > 其他 > 详细

TLS版本

时间:2016-06-27 15:26:50      阅读:270      评论:0      收藏:0      [点我收藏+]

常见应用: https其实就是建构在SSL/TLS之上的 http协议。

1) setProtocol="TLS" will enable SSLv3 and TLSv1
2) setProtocol="TLSv1.2" will enable SSLv3, TLSv1, TLSv1.1 and TLS v1.2
3) setProtocol="TLSv1.1" will enable SSLv3, TLSv1, and TLSv1.1
4) setProtocol="TLSv1" will enable SSLv3 and TLSv1
5) setProtocol="SSL" will enable SSLv3 and TLSv1
6) setProtocol="SSLv3" will enable SSLv3 and TLSv1
7) setProtocol="SSLv2" won‘t work

tomcat 配置

<Connector port="443" protocol="HTTP/1.1" SSLEnabled="true"  
               maxThreads="150" scheme="https" secure="true"   
                              clientAuth="false" sslProtocol="TLSv1.2" 
  keystore="/opt/salesforce/api/tomcat/vk_key/key.jks" keystorePass="password"
 />

TLS版本

原文:http://www.cnblogs.com/kamil/p/5620085.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!