Fix "This implementation are not part of the Windows Platform FIPS validated cryptographic algorithms"
The server was installed, IIS and ASP. NET were loaded, but an exception occurred while running the ASPX page:
Exception information: This implementation was not a part of the Windows Platform FIPS validated cryptographic algorithms.
Search on the Internet, there are several options:
1. Turn off FIPS:gpedit.msc with the Group Policy Editor and change to disable
result : My original is disabled, this scheme is invalid.
2. Deactivate FIPS for the dotnet framework.
(1) Modify Web. config to add
<configuration> <runtime> <enforceFIPSPolicy enabled="false"/> </runtime></configuration>
result : invalid
(2) Modify the C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Config\machine.config and add the same content as (1)
result : invalid
3. Modify the Registration form:
(1): hkey_local_machine\system\currentcontrolset\control\lsa:fipsalgorithmpolicy=0;
(2): hkey_local_machine\system\currentcontrolset\control\lsa\fipsalgorithmpolicy:enabled=0;
results : my (1) is 1, (2) is 0, the (1) changed to 0 after the problem solved .
Fix "This implementation are not part of the Windows Platform FIPS validated cryptographic algorithms"