EntLib 自动数据库连接字符串加密

 const string provider = "RsaProtectedConfigurationProvider";
                Configuration config = null;

                config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);

                // 加密连接字符串

                ConfigurationSection section = config.ConnectionStrings;

                if ((section.SectionInformation.IsProtected == false) &&

                    (section.ElementInformation.IsLocked == false))
                {
                    section.SectionInformation.ProtectSection(provider);

                    section.SectionInformation.ForceSave = true;

                    config.Save(ConfigurationSaveMode.Full);

                }

这样控制台所在目录或者IIS发布目录下连接将是加密字符串.

如果报错,说明机器上没有RSA容器,可通过

aspnet_regiis -pc "MyKeys" -exp

aspnet_regiis -pa "MyKeys" "NT AUTHORITY\NETWORK SERVICE"

 

创建,具体参见:http://msdn.microsoft.com/en-us/library/2w117ede.aspx 

参考:http://www.cnblogs.com/Terrylee/archive/2006/06/05/Enterprise_Library_Encryption_ConnectionStrings.html

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。