active questions tagged symmetric-key - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T15:54:22Z http://stackoverflow.com/feeds/tag/symmetric-key http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1456294/rijndaelmanaged-key-generation 0 RijndaelManaged Key generation Happy Go Lucky 2009-09-21T19:16:10Z 2009-09-21T19:22:37Z <p>I need to encrypt data and store it in a file and later be able to decrypt it back. For this I am using RijndaelManaged class. Now I do not want to keep the key hardcoded in the code. After some googling I found <a href="http://www.obviex.com/samples/Code.aspx?Source=EncryptionCS&amp;Title=Symmetric%20Key%20Encryption&amp;Lang=C%23" rel="nofollow">this</a> method -</p> <p>Here the key is generated but then all other values like passphrase, salt and IV are hardcoded. I do not have the option of letting the user enter the password, so I will also have to hard-code these values. So is this really safe? Can't some hacker use tools to find these hardcoded values and figure out the key? </p> http://stackoverflow.com/questions/1284412/why-does-changing-one-bit-in-a-triple-des-key-or-initial-value-not-give-different 2 Why does changing one bit in a Triple DES key or initial value not give different encrypted data? Mark Rushakoff 2009-08-16T14:30:25Z 2009-08-16T14:48:33Z <p>I'm using pyDes to encrypt some data. I wanted to demonstrate that if you change even one bit in the key or initial value, the encrypted data would be totally different. I set up the 16-byte key to change the last character by +/- 1, causing at least one bit to be different. However, even when I do that, the 3 different instances of encrypted data are not all different.</p> <pre><code>from pyDes import * data = 'Hello' # CBC : Cipher-Block-Chaining # \0..\1: arbitrary initial value for CBC # pad=None: let pyDes take care of padding bytes k1 = triple_des("16-byte-key-here", CBC, "\0\0\0\0\0\0\0\1", pad=None, padmode=PAD_PKCS5) k2 = triple_des("16-byte-key-herf", CBC, "\0\0\0\0\0\0\0\1", pad=None, padmode=PAD_PKCS5) k3 = triple_des("16-byte-key-herd", CBC, "\0\0\0\0\0\0\0\1", pad=None, padmode=PAD_PKCS5) d1 = k1.encrypt(data) d2 = k2.encrypt(data) d3 = k3.encrypt(data) assert d1 != d2 assert d2 != d3 assert d1 != d3 </code></pre> <p>One of the assertions seems to fail if I only make a small change to either the key or initial value; I have seen both <code>d1 != d2</code> and <code>d1 != d3</code> fail depending on what I change. I have also tried changing <code>'Hello'</code> to <code>'Hello' * 50</code> to make sure it wasn't just a case of the input data being too short.</p> <p>If I make totally random keys, the assertions pass. With the program as seen above, <code>d1 != d3</code> fails (those keys are one bit apart; k1-k2 are 2 bits different).</p> <p>I am by no means an encryption expert, but if two keys only one bit apart result in the same encrypted data, then that means the effort it takes to brute-force the key just went down by a factor of two, right?</p> <p>Am I missing something obvious? Is Triple DES not supposed to give unique results for very similar keys? Or is this a bug in PyDes? Maybe someone else could confirm this behavior in another implementation?</p> <p><hr/> @Chris Jester-Young had the answer that some of the bits in the key are parity bits. And as it turns out, according to <a href="http://www.tropsoft.com/strongenc/des3.htm" rel="nofollow">this article</a>:</p> <blockquote> <p>Note that although the input key for DES is 64 bits long, the actual key used by DES is only 56 bits in length. The least significant (right-most) bit in each byte is a parity bit, and should be set so that there are always an odd number of 1s in every byte. These parity bits are ignored, so only the seven most significant bits of each byte are used, resulting in a key length of 56 bits. <strong>This means that the effective key strength for Triple DES is actually 168 bits because each of the three keys contains 8 parity bits that are not used during the encryption process.</strong></p> </blockquote> <p>(emphasis was mine)</p> <p>And those parity bits were exactly the bits I was changing in the example.</p> <p>Thanks Chris!</p> http://stackoverflow.com/questions/1205263/how-to-wrap-store-the-key-of-tripledescryptoserviceprovider 0 how to wrap/store the key of TripleDESCryptoServiceProvider ala 2009-07-30T08:42:57Z 2009-07-30T09:11:23Z <p>I'm using DES encryption, and I want to store the key of TripleDESCryptoServiceProvider. </p> <p>But the key consists of (Key + IV),</p> <p>I was trying to save them in an XML file using </p> <pre><code>XmlTextWriter Convert.ToBase64String(...) </code></pre> <p>but there was an exception due to IV contains invalid characters "=" in XML. </p> <p>Is there a better way to store symmetric cryptography key ?</p> http://stackoverflow.com/questions/209927/sql-server-2005-restoring-an-encrypted-db-on-a-different-server 2 SQL Server 2005 - Restoring an encrypted DB on a different server snack00 2008-10-16T19:30:11Z 2008-10-22T14:30:32Z <p>I have backed up an encrypted DB (symmetric key/certificate) and restored it on a different server. </p> <p>Unfortuantely we're having problems with the decryption... hoping someone can help. </p> <p>In the restored db, I can see the Symmetric Key and the Certificate in SSMS, but when I try to Open the key using the cert ( open symmetric key KeyA decryption by certificate CertB )I get the following <em>very descriptive</em> error: </p> <p>Msg 15466, Level 16, State 1, Line 1 An error occurred during decryption. </p> <p>Any ideas?</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/50142/symmetric-key-storage 5 Symmetric key storage Daniel Schaffer 2008-09-08T16:54:39Z 2008-09-30T15:05:57Z <p>My company is going to be storing sensitive data for our customers, and will be encrypting data using one of the managed .NET encryption algorithm classes. Most of the work is done, but we haven't figured out how/where to store the key. I've done some light searching and reading, and it seems like a hardware solution might be the most secure. Does anyone have any recommendations on a key storage solution or method?</p> http://stackoverflow.com/questions/118463/what-is-the-performance-difference-of-pki-to-symmetric-encryption 3 What is the performance difference of pki to symmetric encryption? stevemac 2008-09-23T00:44:31Z 2008-09-23T22:13:06Z <p>We are looking to do some heavy security requirements on our project, and we need to do a lot of encryption that is highly performant.</p> <p>I think that I know that PKI is much slower and more complex than symmetric encrpyption, but I can't find the numbers to back up my feelings.</p>