a我考网

 找回密码
 立即注册

QQ登录

只需一步,快速开始

扫一扫,访问微社区

查看: 129|回复: 0

[考试辅导] 应用技术:设置并加密App.Config中数据库连接字符串

[复制链接]
发表于 2012-8-4 14:06:19 | 显示全部楼层 |阅读模式
App.config中的数据库连接字符串,是在Settings.settings同步过来的。后者在设计时支持数据集DataSet的设计,但运行时不能更改,可以更改App.config的连接字符串,但无法加密、解密。造成的结果是数据库连接字符串,要么固定不变,要么以明文显示,极不安全。多次尝试后,成功的解决这些问题。   我的经验:
7 d; i7 P5 s( a  1. Settings.settings中的设置和App.config中的设置会相互更新,彼此同步。前者用于设计支持,后者用于运行时。可以手工阻止两者同步,使两者设置不一样,如果没有发布App.config,则全部采用Settings.settings的设置;否则在运行时App.config会覆盖Settings.settings的设置。  b, a' Q: ?* u* W$ h6 J+ C
  2. Settings.settings中的Application范围设置只在设计时更改,是只读的属性,User范围设置可以在运行时读写。
+ x- ^3 w% K) b3 N  应用程序作用域设置与用户作用域设置之间的重要区别是,用户作用域设置在运行时为读/写,并且可在代码中对其值进行更改和保存。应用程序作用域设置在运行时为只读。虽然可以读取,但是不能对其进行写入。具有应用程序作用域的设置只能在设计时或通过手动修改设置文件进行更改。
( G( ], {2 E% B  3. Settings中的只有“连接字符串”设置才能被数据集DataSet设计时支持,而“连接字符串”设置只能是Application范围设置,是只读的属性。
# q( c0 Z& k8 ~% j5 @+ Q: G0 l  解决思路:
5 H% |0 Y( s2 D" d' M) Z  将Settings.settings的设计时代码文件Settings.Designer.cs内容复制到Setgings.cs中,删除Settings.Designer.cs,更改部分代码。连接字符串在Setgings.cs中缺省设置为明码,在App.config中为加密码。代码如下,DESEncrypt为静态加密函数,DESDecrypt为静态解密函数:
* |9 {; K" s5 i2 E( [% _  重写Settings代码
7 }; K7 e0 W8 J# ], a% @9 U
5 W7 B7 R* B; W9 ?. {; o" |; l* i4 V+ ?8 |# a
1 using System.Xml; 2 namespace A.Properties 3{ 4 5    [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 6    [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.
' k# ~( ?9 s& k5 q       VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", * y4 K6 Y$ |/ U9 A! O
      "8.0.0.0")] 7    internal sealed  class Settings : global::System.Configuration.  j. L5 q, T; e: [
         ApplicationSettingsBase 8    { 910    private static Settings defaultInstance = ((Settings)(global::System.' }3 l2 o% x7 |- C
       Configuration.ApplicationSettingsBase.Synchronized(new Settings())));1112        public static Settings Default13        {14            get15            {16                return defaultInstance;17            }18        }1920     [global::System.Configuration.ApplicationScopedSettingAttribute()]21     [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]22     [global::System.Configuration.SpecialSettingAttribute(global::System., S8 r) P& U. u; C3 I+ X) w9 T) l
           Configuration.SpecialSetting.ConnectionString)]23        [global::System.Configuration.DefaultSettingValueAttribute
5 l% u9 l) R: J$ h* l. J           ("Data Source=(local);Initial Catalog=Test;Persist Security Info=
$ r% d, S7 @5 A+ u; d. v. t: {                 True;User ID=sa;Password=")]24        public string ConnectionString125        {26            get27          {28           return Encrypt.DESDecrypt(this["ConnectionString1"].ToString());29          }30            set31            {32                base["ConnectionString1"] = Encrypt.DESEncrypt(value);33                this.SetKeyValue("A.Properties.Settings.ConnectionString1",
$ f1 ?1 s/ v/ z% G, ^0 S9 d/ S                    Encrypt.DESEncrypt(value));34            }35        }363738        /**//// 39        /// 保存设置40        /// 41        /// ' k  M' w# r* X. I% R
42        ///
4 H- E' z' L3 N. v0 N43   private void SetKeyValue(string AppKey, string AppValue)44   {45    XmlDocument xDoc = new XmlDocument();46    xDoc.Load(System.Windows.Forms.Application.ExecutablePath + ".config");4748      XmlNode xNode;49      XmlElement xElem1;50      XmlElement xElem2;5152       xNode = xDoc.SelectSingleNode("//connectionStrings");5354       xElem1 = (XmlElement)xNode.SelectSingleNode("//add[@name='" +
7 _) v* n; Q+ v+ q% P! c# Q+ n                   AppKey + "']");55     if (xElem1 != null) xElem1.SetAttribute("connectionString", AppValue);56            else57            {58                xElem2 = xDoc.CreateElement("add");59                xElem2.SetAttribute("name", AppKey);60                xElem2.SetAttribute("connectionString", AppValue);61                xNode.AppendChild(xElem2);62            }63    xDoc.Save(System.Windows.Forms.Application.ExecutablePath + ".config");64        }656667    }68}697 |  h* H. Y6 x- i2 k# R
  默认情况下,新的连接字符串设置只在重启时生效。但可以操作数据前,加上一条更改Dataset中Adapter的连接字符串的语句,就可以不用重启,代码如下:% P, Z# \' V) |) a. V
  运行更改数据库连接) M, X' _9 F( `) g" w/ L

+ ]3 G$ R- m- H. I! K% s4 [8 ~
/ q  J4 K6 u+ C) h% {5 T/ v 1    private void toolStripButton1_Click(object sender, EventArgs e) 2   { 3    A.Properties.Settings.Default.ConnectionString1 = @"Data Source=; P. {/ q9 `* q4 G4 X
      (local);Initial Catalog=Test2;Persist Security Info=True;User ID=sa"; 4 5          this.toolStripTextBox1.Text = A.Properties.Settings.Default.
  ?0 I. L! S5 H                   ConnectionString1; 6          this.Test1TableAdapter.Connection.ConnectionString =
1 D# ]: J; G& e0 w4 ~/ n: a! o& `                A.Properties.Settings.Default.ConnectionString1; 7       MessageBox.Show(A.Properties.Settings.Default.ConnectionString1); 8       this.Test1TableAdapter.Fill(this.dataSet1.Test1); 910        }
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|小黑屋|Woexam.Com ( 湘ICP备18023104号 )

GMT+8, 2024-5-8 00:59 , Processed in 0.364241 second(s), 21 queries .

Powered by Discuz! X3.4 Licensed

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表