在哪台机器上加密,哪能机器能直接识别加密后连接字符串。
1
cd C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319
2 加密
aspnet_regiis.exe -pef "connectionStrings" "E:\temp"
-pef 为加密 -pdf 为解密
connectionStrings: 为web.config 里需要加密的节。
E:\temp: 为web.config 所在文件夹
执行完此加密语句后,web.config文件就已经变成加密过的文件了。
3 解密
aspnet_regiis.exe -pdf "connectionStrings" "E:\temp"