asp.net加密数据库连接字符串实现代码

发布时间:2020-12-19编辑:脚本学堂
asp.net程序中加密数据库连接字符串的方法,web.config配置文件的加密解密方法,感兴趣的朋友参考下。

asp.net开发的网站程序,在发布网站时,加密web.config,有效保证数据库用户和密码安全。

操作步骤如下:

1、添加密钥
 

执行:c:windowsmicrosoft.netframeworkv2.0.50727aspnet_regiis -pc "hnlaw" -exp
其中"hnlaw"为密钥名称

2、添加web.config节点
在web.config的<configuration></configuration>之间添加:
 

<configProtectedData>
<providers>
<add keyContainerName="hnlaw" useMachineContainer="true" description="Uses RsaCryptoServiceProvider to encrypt and
decrypt" name="hnlaw" type="System.Configuration.RsaProtectedConfigurationProvider,System.Configuration, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
</providers>
</configProtectedData>


注意,此处keyContainerName="hnlaw"和name="hnlaw"分别表示你的密钥名称;

3、加密web.config
到网站根目录添加一个批处理文件enweb.bat,代码如下:
 

@echo off
c:windowsmicrosoft.netframeworkv2.0.50727aspnet_regiis -pef "system.web/identity" "e:hs studiodonet2hnlawyer" -prov
"hnlaw"
c:windowsmicrosoft.netframeworkv2.0.50727aspnet_regiis -pef "connectionstrings" "e:hs studiodonet2hnlawyer" -prov
"hnlaw"
PAUSE
 

注册以上路径与名称!
运行后出现成功!

4、解密
同样到网站根目录添加一个批处理文件deweb.bat:
 

@echo off
c:windowsmicrosoft.netframeworkv2.0.50727aspnet_regiis -pef "system.web/identity" "e:hs studiodonet2hnlawyer"
c:windowsmicrosoft.netframeworkv2.0.50727aspnet_regiis -pdf "connectionstrings" "e:hs studiodonet2hnlawyer"
pause

注意,做完后找到c:documents and settingsall usersapplication datamicrosoftcryptorsamachinekeys目录下,找到生成的密钥文件(可按时间查找),给上network service可读取权限,不然会出现Error message from the provider: The RSA key container could not be opened. 无法读取。