Created
January 23, 2022 11:18
-
-
Save jamesmacwhite/3b98a476657d434b179e317beb05f9a4 to your computer and use it in GitHub Desktop.
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