asp.net2.0如何加密資料庫聯接字串在asp.net2.0中,發佈網站時,加密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,Systemsion.Configuration, Verfiguration.RsaProtectedConfigurationProvider,Systemsion.Configuration, Verfiguration
. 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.
無法讀取
這樣可能會出現,如果沒有自己的伺服器,沒有權限修改MachineKeys目錄,不知道還有其它解決辦法,希望大家共享一下:)