I am working on a win form application .net framework 4.0.
I have got connection string in app.config. I need to encrypt it. If I use "DataProtectionConfigurationProvider" then this will be machine specific. Encryption done on one machine cannot be used on other machine. So if I have 100 machine then encryption will be done 100 times on every machine.
I have to deploy this application on 100 machines.
Is there is way if I encrypt it and then use it on all other machines.
Any help will be appreciated.