Xiaofeitu uses a Secure Sockets Protocol (SSL) provided by the Windows operating system, which contains encryption and decryption APIs used by HTTPS certificates. When it encounters encryption APIs that are not available in the Windows system, it will report this error.
windows7 and windows server 2008 R2It supports up to TLS 1.0.Windows 10 version 21H2 and Windows Server 2019It supports up to TLS 1.2.Windows 11 and Windows Server 2022It supports up to TLS 1.3.Detailed document
If Windows 11 still reports errors when encountering TLS 1.3, in
Windows PowerShellExecute the following code to output all security protocol types currently supported by the system:
Add-Type -AssemblyName System.ServiceModel [System.Enum]::GetNames([System.Net.SecurityProtocolType])
View current security protocols and set security protocols
[Net.ServicePointManager]::SecurityProtocol [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Ssl3 -bor [Net.SecurityProtocolType]::Tls -bor [Net.SecurityProtocolType]::Tls11 -bor [Net.SecurityProtocolType]::Tls12 -bor [Net.SecurityProtocolType]::Tls13
Why can Chrome/Edge run on Windows 7/Windows 2008 systems?
Why doesn't Xiaofeitu have a built-in encryption/decryption API?
