zoukankan      html  css  js  c++  java
  • 解决“This implementation is not part of the Windows Platform FIPS validated cryptographic algorithms”

    解决“This implementation is not part of the Windows Platform FIPS validated cryptographic algorithms”

    还是装那台服务器,装好了IIS和ASP.NET,但在运行aspx页面时出现了异常:
    异常信息: This implementation is not part of the Windows Platform FIPS validated cryptographic algorithms.
    上网搜索一下,有以下几种方案:
    1.用组策略编辑器关闭FIPS:gpedit.msc,改成禁用
    这里写图片描述
    结果:我的本来就是禁用,此方案无效。
    2.将DOTNET Framework停用FIPS。
    (1)修改Web.config增加

    <configuration>
        <runtime>
            <enforceFIPSPolicy enabled="false"/>
        </runtime>
    </configuration>

    结果:无效
    (2)修改C:WindowsMicrosoft.NETFramework64v4.0.30319Configmachine.config,增加与(1)相同的内容
    结果:无效
    3.修改注册表:
    (1):HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlLsa:FipsAlgorithmPolicy=0;
    (2):HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlLsaFipsAlgorithmPolicy:enabled=0;
    结果:我的(1)是1,(2)本来就是0,把(1)改成0后,问题解决

  • 相关阅读:
    linux向下向上查找
    安卓中的线程
    安卓 新浪微博随便看看
    平面图的基本概念及性质
    软件工程知识点总结
    磁盘阵列RAID原理、种类及性能优缺点对比
    面试题之------三次握手与四次挥手过程
    不忘初心
    考研彼岸,花开馨香
    In和Out指令
  • 原文地址:https://www.cnblogs.com/magic-xxj/p/8313065.html
Copyright © 2011-2022 走看看