How to encrypt one message for multiple recipients? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T12:41:00Z http://stackoverflow.com/feeds/question/38846 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/38846/how-to-encrypt-one-message-for-multiple-recipients 5 How to encrypt one message for multiple recipients? Brian R. Bondy 2008-09-02T04:58:46Z 2008-11-05T19:07:54Z <p>What are the fundamentals to accomplish data encryption with exactly two keys (which could be password-based), but needing only one (either one) of the two keys to decrypt the data?</p> <p>For example, data is encrypted with a user's password and his company's password, and then he or his company can decrypt the data. Neither of them know the other password. Only one copy of the encrypted data is stored.</p> <p>I don't mean public/private key. Probably via symmetric key cryptography and maybe it involves something like XORing the keys together to use them for encrypting. </p> <p>Update: I would also like to find a solution that does not involve storing the keys at all.</p> http://stackoverflow.com/questions/38846/how-to-encrypt-one-message-for-multiple-recipients/38848#38848 3 Answer by Brad Wilson for How to encrypt one message for multiple recipients? Brad Wilson 2008-09-02T05:01:35Z 2008-09-02T05:01:35Z <p>Generally speaking, what you do is encrypt the data with a randomly generated key, and then append versions of that random key that have been encrypted with every known key. So anybody with a valid key can discover the 'real' key that was used to encrypt the data.</p> http://stackoverflow.com/questions/38846/how-to-encrypt-one-message-for-multiple-recipients/38853#38853 11 Answer by erickson for How to encrypt one message for multiple recipients? erickson 2008-09-02T05:04:02Z 2008-09-02T05:04:02Z <p>The way this is customarily done is to generate a single symmetric key to encrypt the data. Then you encrypt the symmetric key with each recipient's key or password to that they can decrypt it on their own. S/MIME (actually the Cryptographic Message Syntax on which S/MIME is based) uses this technique.</p> <p>This way, you only have to store one copy of the encrypted message, but multiple copies of its key.</p> http://stackoverflow.com/questions/38846/how-to-encrypt-one-message-for-multiple-recipients/38863#38863 0 Answer by Brian R. Bondy for How to encrypt one message for multiple recipients? Brian R. Bondy 2008-09-02T05:16:02Z 2008-09-02T05:16:02Z <p>I think I thought of a solution that would work:</p> <pre><code>D = data to encrypt h1 = hash(userpassword) h2 = hash(companyPassword) k = h1 concat h2 E = function to encrypt //C is the encrypted data C = E_h1(h2) concat E_h2(h1) concat E_k(D) </code></pre> <p>Then either person can decrypt the hash of the other person, and then combine them to decrypt the rest of the data.</p> <p>Perhaps there is a better solution than this though?</p> http://stackoverflow.com/questions/38846/how-to-encrypt-one-message-for-multiple-recipients/38867#38867 1 Answer by Brad Wilson for How to encrypt one message for multiple recipients? Brad Wilson 2008-09-02T05:20:03Z 2008-09-02T05:20:03Z <p>@Brian,</p> <p>That solution will work, although it becomes unwieldy when there are more than 2 keys.</p> http://stackoverflow.com/questions/38846/how-to-encrypt-one-message-for-multiple-recipients/38880#38880 0 Answer by Brian R. Bondy for How to encrypt one message for multiple recipients? Brian R. Bondy 2008-09-02T05:26:55Z 2008-09-02T05:26:55Z <p>Thanks erickson and Brad Wilson, those seem like great methods because you can easily change either password without re-encrypting all data. My suggested solution didn't have that property.</p> http://stackoverflow.com/questions/38846/how-to-encrypt-one-message-for-multiple-recipients/66390#66390 0 Answer by Andrew for How to encrypt one message for multiple recipients? Andrew 2008-09-15T20:05:14Z 2008-09-15T20:05:14Z <p>In the more general case, a secret (in this application, a decryption key for the data) can be split into shares such that some threshold number of these shares is required to recover the secret. This is known as secret sharing or with n shares and a threshold of t, a (t,n)-threshold scheme.</p> <p>One way this can be done is by creating a polynomial of order t-1, setting the secret as the first coefficient, and choosing the rest of the coefficients at random. Then, n random points on this curve are selected and become the shares.</p>