Go to: encrypt the winform app. config file

Source: Internet
Author: User
Tags connectionstrings

To: http://hi.baidu.com/xbzhu/blog/item/855a2f126f034554f819b828.html

 

Encrypt the winform app. config file
Recently, I am working on a winform project. Because I am using the client to directly connect to the database, I need to deploy the app on the client. config. Because Enterprise Library is used. the connectionstrings In the config file are encrypted and searched for msdn. the ready-made tool ASP is found. net IIS registration tool (aspnet_regiis.exe), but it can only be used for ASP. net web. config file, is there no way for us? Of course, the answer is no.

Configuration Options

-PDF section webapplicationdirectory Decrypts the specified configuration section of the web. config file in the specified physical (non-virtual) directory.
-Wordpress section webapplicationdirectory Encrypts the specified configuration section of the web. config file in the specified physical (non-virtual) directory.

-The PDF and-Ave parameters are for the web in the specified physical directory. the config file is encrypted. the config file is renamed as web. through these two parameters, you can "cheat" the system to encrypt the specified configuration section. We only need to change the encrypted file name back to the app. config:

Step 1: First rename app. config in the directory to Web. config.

Step 2: Open the SDK command prompt and enter the command: aspnet_regiis-Arg "configuration section" "directory". Take my project as an example. The contents of the pre-encryption config file are as follows:

1 <? XML version = "1.0" encoding = "UTF-8"?>
2 <configuration>
3 <configsections>
4 <section name = "dataconfiguration" type = "Microsoft. practices. enterpriselibrary. data. configuration. databasesettings, Microsoft. practices. enterpriselibrary. data, version = 2.0.0.0, culture = neutral, publickeytoken = NULL "/>
5 </configsections>
6 <dataconfiguration defaultdatabase = "connection string"/>
7 <connectionstrings>
8 <Add name = "connection string" connectionstring = "database = locomotivestat; server = 10.167.61.49; user id = sa; Password = sa ;"
9 providername = "system. Data. sqlclient"/>
10 </connectionstrings>
11 </configuration>

Run the following command: aspnet_regiis-VF "connectionstrings" "E:/Development Directory". The encrypted config file is as follows:

1 <? XML version = "1.0" encoding = "UTF-8"?>
2 <configuration>
3 <configsections>
4 <section name = "dataconfiguration" type = "Microsoft. practices. enterpriselibrary. data. configuration. databasesettings, Microsoft. practices. enterpriselibrary. data, version = 2.0.0.0, culture = neutral, publickeytoken = NULL "/>
5 </configsections>
6 <dataconfiguration defaultdatabase = "connection string"/>
7 <connectionstrings configprotectionprovider = "rsaprotectedconfigurationprovider">
8 <encrypteddata type = "http://www.w3.org/2001/04/xmlenc#Element"
9 xmlns = "http://www.w3.org/2001/04/xmlenc#">
10 <encryptionmethod algorithm = "http://www.w3.org/2001/04/xmlenc#tripledes-cbc"/>
11 <keyinfo xmlns = "http://www.w3.org/2000/09/xmldsig#">
12 <encryptedkey xmlns = "http://www.w3.org/2001/04/xmlenc#">
13 <encryptionmethod algorithm = "http://www.w3.org/2001/04/xmlenc#rsa-1_5"/>
14 <keyinfo xmlns = "http://www.w3.org/2000/09/xmldsig#">
15 <keyname> RSA key </keyname>
16 </keyinfo>
17 <cipherdata>
18 <ciphervalue> encrypt/7dqcd1u9glqfei/encrypt/yw7g8xlrco0h2 + yyd/tqtnovmu/rkdjmsjzmnwpwq + encrypt/decrypt = </ciphervalue>
19 </cipherdata>
20 </encryptedkey>
21 </keyinfo>
22 <cipherdata>
23 <ciphervalue> blwv/strong/rdcg + wiz7tl5d/strong + pxcw4oe1w/strong + fscs2w/strong + w9mxtvdmo/qszxfxloemis/strong + r66 + strong </ciphervalue>
24 </cipherdata>
25 </encrypteddata>
26 </connectionstrings>
27 </configuration>

It can be seen that we have completed the task, and now we only need. change the config file name back to the app. in the Application project, you do not need to decrypt the file ,. net Framework will automatically complete for us. If you want to decrypt the file, it is also very easy, enter aspnet_regiis-PDF "configuration section" "directory" in the SDK command prompt.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.