General String Encryption in .NET - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T00:58:37Z http://stackoverflow.com/feeds/question/900610 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/900610/general-string-encryption-in-net 3 General String Encryption in .NET cryptospin 2009-05-23T01:16:33Z 2009-05-23T18:29:28Z <p>I am looking for a general string encryption class in .NET. (Not to be confused with the 'SecureString' class.)</p> <p>I have started to come up with my own class, but thought there must be a .NET class that already allows you to encrypt/decrypt strings of any encoding with any Cryptographic Service Provider.</p> <pre><code>Public Class SecureString Private key() As Byte Private iv() As Byte Private m_SecureString As String Public ReadOnly Property Encrypted() As String Get Return m_SecureString End Get End Property Public ReadOnly Property Decrypted() As String Get Return Decrypt(m_SecureString) End Get End Property Public Sub New(ByVal StringToSecure As String) If StringToSecure Is Nothing Then StringToSecure = "" m_SecureString = Encrypt(StringToSecure) End Sub Private Function Encrypt(ByVal StringToEncrypt As String) As String Dim result As String = "" Dim bytes() As Byte = Text.Encoding.UTF8.GetBytes(StringToEncrypt) Using provider As New AesCryptoServiceProvider() With provider .Mode = CipherMode.CBC .GenerateKey() .GenerateIV() key = .Key iv = .IV End With Using ms As New IO.MemoryStream Using cs As New CryptoStream(ms, provider.CreateEncryptor(), CryptoStreamMode.Write) cs.Write(bytes, 0, bytes.Length) cs.FlushFinalBlock() End Using result = Convert.ToBase64String(ms.ToArray()) End Using End Using Return result End Function Private Function Decrypt(ByVal StringToDecrypt As String) As String Dim result As String = "" Dim bytes() As Byte = Convert.FromBase64String(StringToDecrypt) Using provider As New AesCryptoServiceProvider() Using ms As New IO.MemoryStream Using cs As New CryptoStream(ms, provider.CreateDecryptor(key, iv), CryptoStreamMode.Write) cs.Write(bytes, 0, bytes.Length) cs.FlushFinalBlock() End Using result = Text.Encoding.UTF8.GetString(ms.ToArray()) End Using End Using Return result End Function End Class </code></pre> http://stackoverflow.com/questions/900610/general-string-encryption-in-net/900632#900632 3 Answer by Noldorin for General String Encryption in .NET Noldorin 2009-05-23T01:33:17Z 2009-05-23T01:40:47Z <p>The <a href="http://msdn.microsoft.com/en-us/library/system.security.cryptography.aes.aspx" rel="nofollow">AES</a> algorithm for symmetric encryption is generally the way to go for generic encryption of strings. However, I'm afraid that the .NET BCL doesn't simplify things any further for you the providing the basic encryption/decryption classes and functions.</p> <p>You can find a good example of how to use the crypographic classes specifically for string encryption on <a href="http://www.obviex.com/samples/Encryption.aspx" rel="nofollow">this page</a>. It appears to be very complete and well commented indeed - you may even find that you can use it without any further modifications. Note: <em>Rijndael</em> is the same algorithm as <em>AES</em>. (Technically, the former refers to the algorithm's real name, and the latter the <em>Advanced Encryption Standard</em>.)</p> http://stackoverflow.com/questions/900610/general-string-encryption-in-net/900665#900665 0 Answer by Keltex for General String Encryption in .NET Keltex 2009-05-23T02:00:14Z 2009-05-23T02:00:14Z <p>Here's one from SO:</p> <p><a href="http://stackoverflow.com/questions/11762/c-cryptographicexception-padding-is-invalid-and-cannot-be-removed">http://stackoverflow.com/questions/11762/c-cryptographicexception-padding-is-invalid-and-cannot-be-removed</a></p> http://stackoverflow.com/questions/900610/general-string-encryption-in-net/902066#902066 2 Answer by jrista for General String Encryption in .NET jrista 2009-05-23T17:59:50Z 2009-05-23T17:59:50Z <p>If you are trying to achieve the same goal as .NET's SecureString, then your example really doesn't solve the problem. (I could be misunderstanding your goals, in which case I apologize.)</p> <p>The idea of .NET's SecureString is that it stores the string data encrypted in a non-managed chunk of memory, is immutable once created, and can not be read in .NET using a normal string variable. This protects the string from anyone trying to probe your memory space (i.e. malware, worm, Trojan, whatever), and must be explicitly cleaned up by you. The reasons for this involve how .NET treats strings, and the fact that data in memory is only cleaned up at the whim of the GC.</p> <p>Even though your SecureString class encrypts the string into a private variable, the original string that was passed in is still insecure. It can also stick around for a while before the GC collects it, or, if that string was interned, it will live for the duration of the process it resides within. Interned strings are stored in a table, which makes them easier to find, too.</p> <p>On the other side of things...if you Decrypt your SecureString, your getting a new string variable that could run into the same problems as the input string...it is only cleaned up when the GC decides to...and it also may end up interned and live for the duration of the process.</p> <p>To compound problems, every time you Decrypt, you are getting another copy of your encrypted string. This could build up a surplus of decrypted versions of your secure string, increasing the chances that some piece of malware that is probing for, say, credit card numbers...will actually find one.</p> <p>I have tried many times to create a better, more .NET like version of .NET 2.0's SecureString, but have never been able to produce something that is truly secure. You could get a pointer to the string variable that was decrypted, wipe it, set each character to nil, etc. However this could be very problematic in the even that something is still referencing that string, causing disappearing text, corrupted reads, etc. If the string is interned, which generally means it is being used by many things for a long duration of time, wiping it wipes the only version, and affects all use of it. Even if you managed to successfully wipe a copy of your secure string, there is no guarantee that it wasn't copied by other code before you wiped it (i.e. you send your string off to some web service...it now lives in more than one process space, quite possibly in different physical locations around the world.)</p> <p>Its definitely a complicated issue, and only really provides security in the event that your application's memory space has been compromised by malware of some sort.</p> http://stackoverflow.com/questions/900610/general-string-encryption-in-net/902138#902138 0 Answer by this.__curious_geek for General String Encryption in .NET this.__curious_geek 2009-05-23T18:29:28Z 2009-05-23T18:29:28Z <p>Here's a great <a href="http://www.codeproject.com/Articles/36449/String-Encryption-using-DPAPI-and-Extension-Methods.aspx" rel="nofollow">all in one solution</a> for your needs.</p> <p>Link Txt: <a href="http://www.codeproject.com/Articles/36449/String-Encryption-using-DPAPI-and-Extension-Methods.aspx" rel="nofollow">http://www.codeproject.com/Articles/36449/String-Encryption-using-DPAPI-and-Extension-Methods.aspx</a></p>