tls1.2 各语言httpclient使用情况调查

来源:互联网 发布:centos安装开发工具包 编辑:程序博客网 时间:2024/06/07 13:50
客户端语言
版本
类库
是否支持
兼容方案

Java1.6.115之前 否第三方支持包  1.6.115之后 是启动jvm 添加参数-Dhttps.protocols=TLSv1.1,TLSv1.2   1.7 是启动jvm 添加参数-Dhttps.protocols=TLSv1.1,TLSv1.2   1.8 是默认支持 Nodejs各个版本 是默认支持 c#,asp.net4.0-4.4 是

在发送HTTP请求前加入下行代码

ServicePointManager.SecurityProtocol = (SecurityProtocolType)192 | (SecurityProtocolType)768 | (SecurityProtocolType)3072;
  4.5 是

如果是4.5以上版本可以直接使用

ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12 | SecurityProtocolType.Tls11;
 Python 2.7-3 是默认支持 curl7.19.7 是默认支持 Golang 1.7.4net/http是默认支持 Ruby     phpphp5.6file_get_contents是    http\client否    curl是   php5.3.29file_get_contents是    http\client否    curl是  

 

 自己调研的,如果有错误和不足的地方,希望大家指证

原创粉丝点击