Is there a way to store data in an encrypted way such that it can be decrypted with several different keys?
IE, if I've encrypted data with key1, but I want to be able to decrypted with keys 2, 3, and 4.
Is this possible?
|
Is there a way to store data in an encrypted way such that it can be decrypted with several different keys? IE, if I've encrypted data with key1, but I want to be able to decrypted with keys 2, 3, and 4. Is this possible? |
|||
|
|
|
GnuPG does multi-key encryption in standard. The following command will encrypt
This feature is detailed in the user guide section entitled "Encrypting and decrypting documents" |
|||||||
|
|
Yes, it's possible. Google "multiparty encryption" for a start. AFAIK, there are no drop 'em in and use 'em packages for it though. -- MarkusQ P.S. For a sketch of how it could be done, consider this. The encrypted message consists of:
The recipient who hold key i just decrypts their copy of the pad with their key, and then decrypts the payload. However, this is just a proof that it could be done and would suck as an actual implementation. If at all possible, you should avoid rolling your own encryption. If you don't understand why, you should definitely avoid rolling your own encryption. -----Edit ------------ If I'm wrong and the Gnu tools do that, use them. But I can't seem to find any information on how to do it. |
|||||||||||
|
|
Multiple (more than two) key RSA is maybe like this - well i'm not a mathematician, so this algorithm is not necessarily secure, i just want to give an idea with it. m=p*q*r; p,q,r are big prime numbers fi(m)=(p-1)(q-1)(r-1) d==(e1*e2*e3*...*ei)^(-1) (mod fi(m)); e1...ei are arbitrary numbers, d is calculated to fulfill the equation y1==x^e1 (mod m) y2==y1^e2 (mod m) y3==y2^e3 (mod m) ... x==yi^d (mod m) This algorithm could be used for example to increase the speed of The Onion Router. |
|||
|
|