小飞兔使用 Windows 操作系统提供的一个安全套接字协议,里面包含有https证书使用的加解密API,当遇到windows系统没有的加密API时,就会报这个错误。
windows7
和 windows server 2008 R2
,支持到TLS1.0版本。Windows 10 版本 21H2
和 Windows Server 2019
,支持到TLS1.2版本。Windows 11
和 Windows Server 2022
,支持到TLS1.3版本。详细文档
如果windows 11遇到TLS1.3还报错误,在
Windows PowerShell
执行以下代码:
Add-Type -AssemblyName System.ServiceModel
[System.Enum]::GetNames([System.Net.SecurityProtocolType])
为什么chrome/edge能运行在windows7/windows 2008系统呢?
为什么小飞兔不内置加解密API呢?