2

How can i disable the FIPS with the command line? Is there a way? Or can you tell me with which tool i have to configurate it?

would really be thankfull for a little help.

I want to include it in a C# project.

enter image description here

here a view of the configuration i want to change

jww
  • 97,681
  • 90
  • 411
  • 885
Kjenos
  • 529
  • 2
  • 5
  • 19

1 Answers1

3

In a C# Project you can add a Configuration File (App.config) to disable the FIPS.

insert this code:

<configuration>
    <runtime>
        <enforceFIPSPolicy enabled="false"/>
    </runtime>
</configuration>
Kjenos
  • 529
  • 2
  • 5
  • 19