What are the fundamentals to accomplish encrypting data encryption with exactly 2 keys/passwordstwo keys (which could be password-based), but only needing exactly only one (either one) of the 2 keys/passwords two keys to decrypt the data?
For example, data gets is encrypted with a user's password and his company's password, and then him he or his company can decrypt the data. Neither of them know eachother's the other password. The Only one copy of the encrypted data is encrypted/stored exactly oncestored.
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.
Update: I would also like to find a solution that does not involve storing the keys at all.
