Windows禁用SSL和TLS协议的某个版本
禁用SSL3.0的方法:
创建以下2个DWORD类型的注册表键,并取值为0
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\Schannel\Protocols\SSL 3.0\Client\Enabled
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\Schannel\Protocols\SSL 3.0\Server\Enabled
创建以下两个DWORD类型的注册表键,并取值为1
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\Schannel\Protocols\SSL 3.0\Client\DisabledByDefault
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\SecurityProviders\Schannel\Protocols\SSL 3.0\Server\DisabledByDefault
禁用TLS1.0、TLS1.1、SSL2.0的方法
将上面的注册表键值路径中的SSL 3.0替换为需要禁用的协议即可