解決方案:System.InvalidOperationException: 此實現不是 Windows 平台 FIPS 驗證的密碼編譯演算法的一部分。

來源:互聯網
上載者:User

標籤:break   not   box   修複   set   lsa   crypto   方案   代碼   

System.InvalidOperationException: This implementation is not part of the Windows Platform FIPS validated cryptographic algorithms.

引發該問題的原因是系統啟動了FIPS,導致.NET Framework平台中的MD5加密及其他一些加密方法需要調用FIPS驗證,但FIPS又不支援這些方法,故引發如上異常。

解決方案:

註冊表HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\FipsAlgorithmPolicy項目中,將Enabled值設定為0即可

也可以在程式啟動時加入檢查和修複的代碼,如下

        /// <summary>        /// 測試MD5加密可用性        /// </summary>        public static void GeneratingMD5Test()        {            try            {                MD5CryptoServiceProvider get_md5 = new MD5CryptoServiceProvider();            }            catch (InvalidOperationException)            {                CloseFIPS();            }            catch (Exception) { }        }        /// <summary>        /// 關閉作業系統FIPS功能(該功能開啟會導致.NET Framework中的MD5加密功能出現錯誤)        /// </summary>        /// <returns></returns>        private static bool CloseFIPS()        {            bool res = false;            try            {                RegistryKey localMachine = Registry.LocalMachine;                RegistryKey FipsAlgorithmPolicy = localMachine.CreateSubKey(@"SYSTEM\CurrentControlSet\Control\Lsa\FipsAlgorithmPolicy");                string[] vks = FipsAlgorithmPolicy.GetValueNames();                foreach (string k in vks)                {                    if (k.ToUpper() == "ENABLED")                    {                        if (FipsAlgorithmPolicy.GetValue(k).ToString() != "0")                        {                            MessageBoxButtons mbs = MessageBoxButtons.OKCancel;                            DialogResult dre = MessageBox.Show("報名系統運行時發生錯誤,是否嘗試修複(會更改登錄機碼目)?", "提示", mbs);                            if (dre == DialogResult.OK)                            {                                FipsAlgorithmPolicy.SetValue(k, 0);                            }                            break;                        }                    }                }                FipsAlgorithmPolicy.Close();                localMachine.Close();                res = true;            }            catch (Exception ex)            {                MessageBox.Show(String.Format("修複失敗,發生錯誤:{0}{1}{0}詳細情況請查看記錄檔",Environment.NewLine,ex.Message), "錯誤");                LogException(ex);            }            return res;        }

 

解決方案:System.InvalidOperationException: 此實現不是 Windows 平台 FIPS 驗證的密碼編譯演算法的一部分。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.