zoukankan      html  css  js  c++  java
  • xp不支持https(SSL证书)(不是因日期错误导致的)的解决方案

    存在问题

    解决步骤 

    1、运行包含以下内容的reg文件:

    Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINESYSTEMWPAPosReady]
    "Installed"=dword:00000001

    2、安装以下补丁:

    可从 Microsoft Update Catalog 网站下载:www.catalog.update.microsoft.com

    也可直接下载包含多个补丁文件和“reg文件”的压缩包:www.lanzoui.com/inELlw6qyle

    • KB4019276:这一补丁为 Windows XP 增加 TLS 1.1,1.2 协议的支持。
    • KB4467770:这一补丁允许某些软件使用新版协议来建立安全连接。
    • KB3081320:这一补丁为 Windows XP 提供 256 位加密算法支持。

    3、运行包含以下内容的reg文件:

    Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlSecurityProvidersSCHANNELProtocolsTLS 1.1Client]
    "DisabledByDefault"=dword:00000000
    [HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlSecurityProvidersSCHANNELProtocolsTLS 1.1Server]
    "DisabledByDefault"=dword:00000000
    [HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlSecurityProvidersSCHANNELProtocolsTLS 1.2Client]
    "DisabledByDefault"=dword:00000000
    [HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlSecurityProvidersSCHANNELProtocolsTLS 1.2Server]
    "DisabledByDefault"=dword:00000000

    4、重启计算机。

    参考:https://paizhang.info/archives/9701

  • 相关阅读:
    LinQ&EF任我行(一)LinQ to SQL (转)
    WPF数据模板和控件模板
    Sql优化
    SQL锁表语句
    js动态创建dom
    js实现等待n秒后按钮可用
    js关于事件冒泡
    工作流学习(个人总结)
    sql常用函数
    将Datatable序列化为Json对象返回到客户端
  • 原文地址:https://www.cnblogs.com/xiaohi/p/15514852.html
Copyright © 2011-2022 走看看