I'm writing a desktop app that retrieves e-mails from an IMAP server. For convenience, the user is given the option to save his username and password for the login screen, so he doesn't have to enter it each time. Can I save the password as plain text? If not, then how do I do this?

(Note that storing a password hash is not appropriate here because the program must know the exact username and password in order to automatically log into the IMAP server.)

link|improve this question

80% accept rate
feedback

2 Answers

up vote 1 down vote accepted

On Windows, you can store the password using DPAPI.
In .Net, that's the ProtectedData class.

link|improve this answer
feedback

You could try storing the username and password using a Vernam Cipher.

Its better than plain text. but Hide your key.

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.