show/hide this revision's text 2 more detail

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.

show/hide this revision's text 1

Encrypting externally stored App blocks with exportable Key Provider

Hi all,

I have been trying for quite a while to figure out how to encrypt Application blocks that are stored in an external file called dev_entlib.config

I can see in entlib (4.1) that it's possible to use the default protection providers to encrypt the blocks but, I really need to deploy this Application on different servers and thus I would need to export the keyProvider used to encrypt the application blocks to those servers.

this is the config section that specifies an external file to store settings.

<enterpriseLibrary.ConfigurationSource selectedSource="entLib">
	<sources>
		<add name="entLib" type="Microsoft.Practices.EnterpriseLibrary.Common.Configuration.FileConfigurationSource, Microsoft.Practices.EnterpriseLibrary.Common, Version=4.1.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
		  filePath="ConfigFiles\DEV_entlib.config" />
	</sources>
</enterpriseLibrary.ConfigurationSource>

I have tried to export the "NetFrameworkConfigurationKey" which EntLib uses and have had errors like:"Key not valid for specified state". I have tried to grant access to the key for "NT Authority\Network Services" with the resulting error: "No mapping between account names and SecurityIds done", I have also tried to grant access to asp.net and getting:"specified username is invalid".

Normally, one would create a Custom Key Provider using aspnet-regiis.exe but unfortunately,it seems that I can't encrypt an external config files using the aspnet_regiis tool and my custom provider. The result would be that the missing block would 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 using an exported Key provider. I really need to figure out how I can apply this process to deal with config sections that are stored externally to the web.config in entlib application blocks.

One solution that I had considered is to create a webpage with controls that would encrypt and decrypt appSettings (also in a seperate file) and the App Blocks on demand using the WebConfigurationManager class and a custom defined provider. This may not do what I want though.

Does anyone have another suggestions?