简体   繁体   中英

Disable FIPS with command line

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.

在此处输入图片说明

here a view of the configuration i want to change

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>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM