.net加密web.config文件
2018-06-22 07:58:11来源:未知 阅读 ()
这篇文章我将介绍如何利用ASP.NET来加密和解密Web.config中连接字符串,之前只写了第二种方式,现在将两种方式都写出来,供大家参考。不管使用哪种方式我们在程序中都不需要写任何代码来解密连接字符串,因为.NET会自动的为我们解密。如果我们要用连接字符串,可以像平常那样调用。
例如:string strconnection = ConfigurationManager.AppSettings["connection"].ToString();
第一种方式:
通过在命令行中工具运行aspnet_regiis.exe -pef命令,可以对web.config中的连接串进行加密和解密。
1、在命令窗口中,输入命令 aspnet_regiis.exe -pef "connectionStrings" "C:\VisualStudio2008\Authorization"
注:-pef表明程序是以文件系统的形式建立的。第二个“connectionStrings”是你要加密的configuration 节点名字。 第三个参数指名 web.config的物理路径。
2、成功执行命令后会显示:加密成功如果我们想解密,只需要在命令窗口中,输入aspnet_regiis.exe -pdf "connectionStrings" "C:\VisualStudio2008\Authorization"成功执行后,会显示解密成功。此时就可以对连接字符串进行修改。
第二种方式:
使用RSAProtectedConfigurationProvider和DataProtectionConfgurationProvider来加密解密web.config
下面的加密代码使用的是“DataProtectionConfgurationProvider”进行加密的,如需使用“RSAProtectedConfigurationProvider”进行加密,只需要将代码中的“DataProtectionConfgurationProvider”替换成“RSAProtectedConfigurationProvider”即可。
/// <summary> /// 加密指定区块 /// </summary> private void EncryptWebConfigByDPAPI() { Configuration configuration = null; ConfigurationSection connectionSection = null; //打开Request所在路径网站的Web.config文件 configuration = WebConfigurationManager.OpenWebConfiguration(Request.ApplicationPath); //取得Web.config中connectionStrings设置区块 connectionSection = configuration.GetSection("connectionStrings"); //未加密时 if (!connectionSection.SectionInformation.IsProtected) { connectionSection.SectionInformation.ProtectSection("DataProtectionConfigurationProvider"); configuration.Save(); } } /// <summary> /// 解密指定区块 /// </summary> private void EncryptWebConfig() { Configuration configuration = null; ConfigurationSection connectionSection = null; //打开Request所在路径网站的Web.config文件 configuration = WebConfigurationManager.OpenWebConfiguration(Request.ApplicationPath); //取得Web.config中connectionStrings设置区块 connectionSection = configuration.GetSection("connectionStrings"); if (connectionSection != null && connectionSection.SectionInformation.IsProtected) { connectionSection.SectionInformation.UnprotectSection(); configuration.Save(); } }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- asp.net源程序编译为dll文件并调用的实现过程 2020-03-29
- Asp.net MVC SignalR来做实时Web聊天实例代码 2020-03-29
- ASP.NET MVC中jQuery与angularjs混合应用传参并绑定数据 2020-03-29
- Asp.Net中WebForm的生命周期 2020-03-29
- ASP.NET使用Ajax返回Json对象的方法 2020-03-23
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash