zoukankan      html  css  js  c++  java
  • TLS版本

    常见应用: 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"
     />
    公众号请关注:侠之大者
  • 相关阅读:
    C/C++ 库函数 是否调用 WinAPI
    获得图形的实际坐标值
    电影
    adobe flash player 下载地址
    加速软件
    电影_排行榜
    transform
    MyEclipse
    Android
    AAA
  • 原文地址:https://www.cnblogs.com/kamil/p/5620085.html
Copyright © 2011-2022 走看看