Configure .NET Framework to support strong cryptography and allows .NET to use the OS configuration for TLS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\.NETFramework\v2.0.50727] | |
"SystemDefaultTlsVersions"=dword:00000001 | |
"SchUseStrongCrypto"=dword:00000001 | |
[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\.NETFramework\v4.0.30319] | |
"SystemDefaultTlsVersions"=dword:00000001 | |
"SchUseStrongCrypto"=dword:00000001 | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework\v2.0.50727] | |
"SystemDefaultTlsVersions"=dword:00000001 | |
"SchUseStrongCrypto"=dword:00000001 | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\.NETFramework\v4.0.30319] | |
"SystemDefaultTlsVersions"=dword:00000001 | |
"SchUseStrongCrypto"=dword:00000001 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment