我已经加密了我的WCF Webconfig,然后我用实际的webconfig文件替换了我的加密webconfig。
现在问题是项目不能在我的电脑上工作,它在其他系统上工作正常。
加密完成如下:
string provider = "RSAProtectedConfigurationProvider"; // or "DataProtectionConfigurationProvider"
string section = "connectionStrings";
protected void EncriptionWebConfig()
{
System.Configuration.Configuration confg;
if (HttpContext.Current != null)
confg = WebConfigurationManager.OpenWebConfiguration("~");
else
confg = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
ConfigurationSection confStrSect = confg.GetSection(section);
if (confStrSect != null)
{
confStrSect.SectionInformation.ProtectSection(provider);
confg.Save();
}
}
错误是:
使用提供程序'RsaProtectedConfigurationProvider'无法解密。 来自提供程序的错误消息:RSA密钥容器不能 开