diff options
| author | Avalon Thorne <AvalonThorne@northebridge.com> | 2016-06-14 05:13:38 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-06-14 05:13:38 -0400 |
| commit | 318534d4761682d74474d54cc76fe950ea4fc92f (patch) | |
| tree | 3191bc5191d513b4cd8059a1512c5d2097b50601 | |
| parent | 01c7dba742530e1274350bc9f8ea38a6ebc8e8f5 (diff) | |
Disable FIPS Validation Check in App.config
Disables the FIPS Validation Check to allow the MediaBrowser Server Application to run on a Trusted Platform enabled computer running Windows 10. Important information regarding the addition can be found on MSDN: https://msdn.microsoft.com/en-us/library/hh202806(v=vs.110).aspx
While in our discussions with Microsoft Government and Enterprise Support it has been indicated that it's best practice to move to a FIPS validated encryption method (please see MSDN: https://msdn.microsoft.com/en-us/library/0ss79b2x(v=vs.110).aspx to determine an appropriate algorithm), this patch will at minimum allow the application to run by specifying whether to enforce a computer configuration requirement that cryptographic algorithms must comply with the Federal Information Processing Standards or "FIPS."
Please see http://emby.media/community/index.php?/topic/35875-fips-validated-cryptography-fix/ for discussion on the proposed fix.
| -rw-r--r-- | MediaBrowser.ServerApplication/App.config | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/MediaBrowser.ServerApplication/App.config b/MediaBrowser.ServerApplication/App.config index a92d92300..6d840c191 100644 --- a/MediaBrowser.ServerApplication/App.config +++ b/MediaBrowser.ServerApplication/App.config @@ -52,6 +52,7 @@ <bindingRedirect oldVersion="0.0.0.0-2.3.6.0" newVersion="2.3.6.0"/> </dependentAssembly> </assemblyBinding> + <enforceFIPSPolicy enabled="false"/> </runtime> <system.web> <membership defaultProvider="ClientAuthenticationMembershipProvider"> |
