Storing a saved password in Open Source application
问题 I'm writing a C# application that will be open source and I need to be able to store saved login information for each user. Normally I would just encrypt the password and then store it in a user settings file, but I worry that because of the code being open source it kind of defeats the point of encrypting it. Since all anyone would have to do is look at the code and grab the encryption key. Granted, it would at least make it a lot harder than the password being stored in plain text. But is