this
What I've done so far is to add a custom Protected Configuration Provider to the config section that specifies an external machine.config file to store settingsin the .
<enterpriseLibrary.ConfigurationSource selectedSource="entLib"> net v2.0* whatever folder (and all the target servers)the custom provider is like this
<add name="entLibname="MyCompanyProvider" type="Microsoft.Practices.EnterpriseLibrary.Common.Configuration.FileConfigurationSourcetype="System.Configuration.RsaProtectedConfigurationProvider, Microsoft.Practices.EnterpriseLibrary.CommonSystem.Configuration, Version=4.1.0.0Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" filePath="ConfigFiles\DEV_entlib.configkeyContainerName="MyKey" useMachineContainer="true" />I have tried to export
that sits nicely beside the "NetFrameworkConfigurationKey" which EntLib uses other default providers and have had errors like:"Key not valid for specified state"even has design time support in the Entlib config tool. I have tried to grant access to then choose the key protection provider for "NT Authority\Network Services" with the resulting error: "No mapping between account names and SecurityIds done", each block I have also tried to grant access want to asp.net and getting:"specified username is invalid"encrypt.
Normally
Looking at the dev_entlib.config, one would create a Custom Key Provider using aspnet-regiis.exe but unfortunately,it seems shows that I can't encrypt an external config files using indeed the aspnet_regiis tool and block was encrypted with my custom provider. The result would be that My provider uses my key container. Therefore the missing block would should be added to the web.config and not written to the external file.
I have achieved the encryption/decryption of a basic web.config on multiple servers encrypted using an exported Key providermy key container. I really need to figure out how I can apply this process then Export "MyKey" to deal with config sections that are stored externally an xml file using:
c:\Windows\Microsoft.NET\Framework\v2.0.50727>aspnet_regiis.exe -px "MyKey" "C:\keys.xml" -priExporting RSA Keys to the web.config in entlib application blocksfile...One solution that I had considered Succeeded!
This key file is then copied to create a webpage with controls that would encrypt my sysTest server where it is imported and decrypt appSettings (also has access rights granted to "NT Authority\Network Services" and "ASPNET"
I then copy over my encrypted web.config and dev_entlib.config and try to display the connection strings in a seperate file) and small page which uses .net ConfigurationManager to get the App Blocks ConnectionStrings collection and display them on demand using the WebConfigurationManager class page. This page is running under IIS and a custom defined the identity of the process is "NT Authority\Network Services".
The problem is, that it doesn't work! There are bad data errors or "failed to decrypt using provider MyCompanyProvider".
This may not do what I want thoughapproach seems to make logical sense to me but it still fails.
