ProtectedData.Protect intermittent failure - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T11:48:47Z http://stackoverflow.com/feeds/question/246822 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/246822/protecteddata-protect-intermittent-failure 1 ProtectedData.Protect intermittent failure Eric 2008-10-29T13:41:38Z 2008-10-30T07:37:27Z <p>I'm writing a password encryption routine. I've written the below app to illustrate my problem. About 20% of the time, this code works as expected. The rest of the time, the decryption throws a cryptographic exception - "The data is invalid".</p> <p>I believe the problem is in the encryption portion, because the decryption portion works the same every time. That is, if the encryption routine yields a value that the decryption routine can decrypt, it can always decrypt it. But if the encryption routine yields a value that chokes the decryption routine, it always chokes. So the decrypt routine is consistent; the encrypt routine is not.</p> <p>I suspect my use of Unicode encoding is incorrect, but I've tried others with the same result.</p> <p>What am I doing wrong?</p> <pre><code>using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Security.Cryptography; namespace DataProtectionTest { public partial class Form1 : Form { private static readonly byte[] entropy = { 1, 2, 3, 4, 1, 2, 3, 4 }; private string password; public Form1() { InitializeComponent(); } private void btnEncryptIt_Click(object sender, EventArgs e) { Byte[] pw = Encoding.Unicode.GetBytes(textBox1.Text); Byte[] encryptedPw = ProtectedData.Protect(pw, entropy, DataProtectionScope.LocalMachine); password = Encoding.Unicode.GetString(encryptedPw); } private void btnDecryptIt_Click(object sender, EventArgs e) { Byte[] pwBytes = Encoding.Unicode.GetBytes(password); try { Byte[] decryptedPw = ProtectedData.Unprotect(pwBytes, entropy, DataProtectionScope.LocalMachine); string pw = Encoding.Unicode.GetString(decryptedPw); textBox2.Text = pw; } catch (CryptographicException ce) { textBox2.Text = ce.Message; } } } } </code></pre> http://stackoverflow.com/questions/246822/protecteddata-protect-intermittent-failure/246878#246878 0 Answer by Stu Mackellar for ProtectedData.Protect intermittent failure Stu Mackellar 2008-10-29T13:56:09Z 2008-10-29T13:56:09Z <p>I strongly suspect that it's the call to Encoding.Unicode.GetString that's causing the problem. You need to ensure that the data passed to the Unprotect call is <strong>exactly</strong> the same as that returned from the Protect call. If you're encoding the binary data as Unicode text as an interim step then you can't guarantee this. Why do you need this step anyway - why not just store the byte[]?</p> http://stackoverflow.com/questions/246822/protecteddata-protect-intermittent-failure/247019#247019 0 Answer by Joe for ProtectedData.Protect intermittent failure Joe 2008-10-29T14:31:30Z 2008-10-30T07:37:27Z <p>The best solution is to <a href="http://stackoverflow.com/questions/246822/protecteddataprotect-intermittent-failure#247195">convert the byte array to a base 64 string</a>.</p> <p>You can also use Latin-1 aka ISO-8859-1 aka codepage 28591 for this scenario, as it maps values in the range 0-255 unchanged. The following are interchangeable:</p> <pre><code>Encoding.GetEncoding(28591) Encoding.GetEncoding("Latin1") Encoding.GetEncoding("iso-8859-1") </code></pre> <p>With this encoding you will always be able to convert byte[] -> string -> byte[] without loss.</p> <p>See <a href="http://stackoverflow.com/questions/111460/net-8-bit-encoding#111549">this post</a> for a sample that illustrates the use of this encoding.</p> http://stackoverflow.com/questions/246822/protecteddata-protect-intermittent-failure/247070#247070 3 Answer by Eric for ProtectedData.Protect intermittent failure Eric 2008-10-29T14:45:38Z 2008-10-29T14:45:38Z <p>On the advice of a colleague, I opted for Convert.ToBase64String. Works well. Corrected program below.</p> <pre><code>using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Security.Cryptography; namespace DataProtectionTest { public partial class Form1 : Form { private static readonly byte[] entropy = { 1, 2, 3, 4, 1, 2, 3, 4 }; private string password; public Form1() { InitializeComponent(); } private void btnEncryptIt_Click(object sender, EventArgs e) { Byte[] pw = Encoding.Unicode.GetBytes(textBox1.Text); Byte[] encryptedPw = ProtectedData.Protect(pw, entropy, DataProtectionScope.LocalMachine); //password = Encoding.Unicode.GetString(encryptedPw); password = Convert.ToBase64String(encryptedPw); } private void btnDecryptIt_Click(object sender, EventArgs e) { //Byte[] pwBytes = Encoding.Unicode.GetBytes(password); Byte[] pwBytes = Convert.FromBase64String(password); try { Byte[] decryptedPw = ProtectedData.Unprotect(pwBytes, entropy, DataProtectionScope.LocalMachine); string pw = Encoding.Unicode.GetString(decryptedPw); textBox2.Text = pw; } catch (CryptographicException ce) { textBox2.Text = ce.Message; } } } } </code></pre> http://stackoverflow.com/questions/246822/protecteddata-protect-intermittent-failure/247195#247195 1 Answer by Nir for ProtectedData.Protect intermittent failure Nir 2008-10-29T15:13:36Z 2008-10-29T15:13:36Z <p>The problem is the conversion to unicode and the end of the encryption method, Encoding.Unicode.GetString works only if the bytes you give it form a valid UTF-16 string.</p> <p>I suspect that sometimes the result of ProtectedData.Protect is not a valid UTF-16 string - so Encoding.Unicode.GetString drops bytes that not make sense out of the returned string resulting in a string that can't be converted back into the encrypted data.</p>