Connectionstring error after encypted using aspnet_regiis.exe - Stack Overflow most recent 30 from stackoverflow.com 2009-11-08T12:54:31Z http://stackoverflow.com/feeds/question/107846 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/107846/connectionstring-error-after-encypted-using-aspnetregiis-exe 0 Connectionstring error after encypted using aspnet_regiis.exe alextansc 2008-09-20T10:31:53Z 2008-09-21T09:16:59Z <p>I've encrypted the connectionstring in my web.config file using the steps in the link below: <a href="http://www.codeproject.com/KB/database/WebFarmConnStringsNet20.aspx" rel="nofollow">http://www.codeproject.com/KB/database/WebFarmConnStringsNet20.aspx</a></p> <p>However, whenever I call my application, it will give the following error: </p> <blockquote> <p>Failed to decrypt using provider 'CustomProvider'. Error message from the provider: The RSA key container could not be opened.</p> </blockquote> <p>The server where I perform the encryption is a 64-bit Windows Server 2003 R2 SP2. Because of that I assign the ACL to "NT Authority\Network Service". Yet it still doesn't work. </p> <p>Hope someone has some ideas what else do I need to check to get this working.</p> <p>PS. If I used the default rsa key "NetFrameworkConfigurationKey" for encryption, then the connectionstring will not have an access problem. </p> http://stackoverflow.com/questions/107846/connectionstring-error-after-encypted-using-aspnetregiis-exe/107889#107889 0 Answer by Hojou for Connectionstring error after encypted using aspnet_regiis.exe Hojou 2008-09-20T10:59:05Z 2008-09-20T10:59:05Z <p>Did you remember to add the </p> <pre><code>&lt;configProtectedData&gt; </code></pre> <p>to your web.config?</p> http://stackoverflow.com/questions/107846/connectionstring-error-after-encypted-using-aspnetregiis-exe/110610#110610 1 Answer by alextansc for Connectionstring error after encypted using aspnet_regiis.exe alextansc 2008-09-21T09:16:59Z 2008-09-21T09:16:59Z <p>Well, I found the source of the problem, and boy was it embarrassing. In the attribute keyContainerName, I spelled the name incorrectly. </p> <p>That it. That's what caused the problem.</p> <p>Apparently, the encryption will work even if you provide an incorrect keyContainerName, which I incorrectly assumed will fail. So, once I decrypt the connectionstring and re-encrypt with the right keyContainerName, it works fine. </p> <p>BTW, make sure to decrypt your existing connectionstring before correcting the keyContainerName. The aspnet_regiis.exe will complain about bad data, because the provider is now different. </p>