vote up 0 vote down star
1

Hi,

I have a windows service that reads from app.config

I want some settings to be encrypted, however, I don't want to use the ProtectedConfigurationProvider classes provided in .NET because they encrypt files based on the machine they are running on using DPAPI.

What I wanted was a way for our administrator to deploy the config file already encrypted to many machines and have each machine decrypt them when needed.

I don't want to hardcode a password into the assembly either so I'm not sure how I can go about this.

flag
Your service is going to be able to decrypt the settings, and your service executable is living on the machine. Anyone with access to both will be able to decrypt the settings. Maybe this question should be about file permissions? – Dave Feb 18 at 6:17

1 Answer

vote up 0 vote down

Perhaps your central server can maintains a database of the private keys for all the end points, then it could use the specific machine key for that.

A shared private key for all the machines is not going to be that secure.

link|flag
there has to be a solution. your right though, a shared private key is the wrong way to go – Vince Feb 18 at 6:07

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.