How to store passwords in Winforms application? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T20:50:07Zhttp://stackoverflow.com/feeds/question/40853http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/40853/how-to-store-passwords-in-winforms-application17How to store passwords in Winforms application?Gulzar2008-09-02T22:43:39Z2008-11-08T16:24:42Z
<p>I have some code like this in a winforms app I was writing to query a user's mail box Storage Quota.</p>
<p>DirectoryEntry mbstore = new DirectoryEntry(@"LDAP://" + strhome, m_serviceaccount, <strong>m_pwd</strong>, AuthenticationTypes.Secure);</p>
<p>No matter what approach I tried (like SecureString), I am easily able to see the password (m_pwd) either using Reflector or using strings tab of Process Explorer for the executable.</p>
<p>I know I could put this code on the server or tighten up the security using mechanisms like delegation and giving only the required privileges to the service account.</p>
<p>Can somebody suggest a reasonably secure way to store the password in the local application without revealing the password to hackers?</p>
<p>Hashing is not possible since I need to know the exact password (not just the hash for matching purpose).
Encryption/Decryption mechanisms are not working since they are machine dependent.</p>
http://stackoverflow.com/questions/40853/how-to-store-passwords-in-winforms-application/40865#408652Answer by Steven Murawski for How to store passwords in Winforms application?Steven Murawski2008-09-02T22:57:09Z2008-09-02T22:57:09Z<p>If you store it as a secure string and save the secure string to a file (possibly using <a href="http://msdn.microsoft.com/en-us/library/system.io.isolatedstorage.aspx" rel="nofollow">Isolated Storage</a>, the only time you will have a plain text password is when you decrypt it to create your mbstore. Unfortunately, the constructor does not take a SecureString or a Credential object.</p>
http://stackoverflow.com/questions/40853/how-to-store-passwords-in-winforms-application/40867#4086712Answer by 1800 INFORMATION for How to store passwords in Winforms application?1800 INFORMATION2008-09-02T22:58:13Z2008-09-02T22:58:13Z<p>The sanctified method is to use CryptoAPI and the Data Protection APIs.</p>
<p>To encrypt, use something like this (C++):</p>
<pre><code>DATA_BLOB blobIn, blobOut;
blobIn.pbData=(BYTE*)data;
blobIn.cbData=wcslen(data)*sizeof(WCHAR);
CryptProtectData(&blobIn, description, NULL, NULL, NULL, CRYPTPROTECT_LOCAL_MACHINE | CRYPTPROTECT_UI_FORBIDDEN, &blobOut);
_encrypted=blobOut.pbData;
_length=blobOut.cbData;
</code></pre>
<p>Decryption is the opposite:</p>
<pre><code>DATA_BLOB blobIn, blobOut;
blobIn.pbData=const_cast<BYTE*>(data);
blobIn.cbData=length;
CryptUnprotectData(&blobIn, NULL, NULL, NULL, NULL, CRYPTPROTECT_UI_FORBIDDEN, &blobOut);
std::wstring _decrypted;
_decrypted.assign((LPCWSTR)blobOut.pbData,(LPCWSTR)blobOut.pbData+blobOut.cbData/sizeof(WCHAR));
</code></pre>
<p>If you don't specify CRYPTPROTECT_LOCAL_MACHINE then the encrypted password can be securely stored in the registry or config file and only you can decrypt it. If you specify LOCAL_MACHINE, then anyone with access to the machine can get it.</p>
http://stackoverflow.com/questions/40853/how-to-store-passwords-in-winforms-application/48762#487624Answer by Gulzar for How to store passwords in Winforms application?Gulzar2008-09-07T20:34:26Z2008-09-07T20:44:35Z<p>I found this book by keith Brown The .NET Developer's Guide to Windows Security. It has some good samples covering all kinds of security scenarios.
Free <a href="http://alt.pluralsight.com/wiki/default.aspx/Keith.GuideBook.HomePage" rel="nofollow">Online version</a> is also available.</p>
http://stackoverflow.com/questions/40853/how-to-store-passwords-in-winforms-application/155356#1553563Answer by Michael Petrotta for How to store passwords in Winforms application?Michael Petrotta2008-09-30T22:20:11Z2008-09-30T22:20:11Z<p>As mentioned, the Data Protection API is a good way to do this. Note that if you're using .NET 2.0 or greater, you don't need to use P/Invoke to invoke the DPAPI. The framework wraps the calls with the System.Security.Cryptography.ProtectedData class.</p>