JAMS uses the Syncfusion Edit control as an embedded text editor. The Syncfusion Edit control uses the MD5 hash algorithm to validate the installation and data. The MD5 hash algorithm has not yet been approved as part of the FIPS standard. To disable the enforcement of FIPS policy for the JAMS client the JAMSWin.exe.Config file must be edited.
Below is an excerpt from JAMSWin.exe.config which disable FIPS enforcement. This file resides in C:\program files\MVPSI\JAMS\Client .
The change made within the config file is the addition of <enforceFIPSPolicy enabled="false"/> just before the </runtime> as shown below.
<configuration>
<configSections>
<section name="JAMSPage" type="Genghis.PreferencesSectionHandler, JAMSForms"/>
<section name="ExternalPage" type="Genghis.PreferencesSectionHandler, JAMSForms"/>
<section name="JAMSServers" type="Genghis.PreferencesSectionHandler, JAMSForms"/>
</configSections>
<appSettings file="User.config">
<add key="ClientSettingsProvider.ServiceUri" value=""/>
</appSettings>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/>
</startup>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="JAMSShr" publicKeyToken="7da961def3057cf2" culture="neutral"/>
<bindingRedirect oldVersion="6.0.0.0-6.9999.9999.9999" newVersion="6.3.0.0"/>
</dependentAssembly>
</assemblyBinding>
<generatePublisherEvidence enabled="false"/>
<enforceFIPSPolicy enabled="false"/>
</runtime>
Comments