I am aware that this is a more subjective question than is preferred, but I couldn't think of a better place or way to ask it.

I am developing a WPF application, and I have configuration settings in an App.config file. Some of these settings are sensitive information, and it would be best if the users of the machine could not directly access them (the settings would be set during install or administrator configuration).

What is the best way to protect application configuration settings for a WPF desktop application?

Thanks for any help.

link|improve this question

77% accept rate
1  
Encrypt them? What are you storing? – Oskar Kjellin May 18 '11 at 19:15
Encryption would be great, but how could you prevent an advanced user (hacker) from decompiling the application and getting the key? Usernames, passwords (potentially), sensitive URL, providers, etc.. – Sako73 May 18 '11 at 19:24
1  
I don't believe WPF is relevant to the question: that framework doesn't alter the way you interact with an app.config file, as far as I'm aware. – Dan J May 18 '11 at 19:25
2  
For password you would use one way encryption. That way the only way a hacker can get the password is by brute force. There isn't much you can do. If your app can get the value, a hacker can as well – Oskar Kjellin May 18 '11 at 19:26
feedback

1 Answer

up vote 1 down vote accepted

This question has nothing to do with WPF per se.

.Net offers a wide load of encryption methods.

For passwords, you should really look into one way encryption like MD5. Then when you authenticate you just encrypt what the user entered and see if it encrypts to the same thing.

For URLs etc I would suggest you check out this question.

You might also find this question similar to yours

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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