I have a 128 bit encryption key that I would like to break up into three parts that when XOR'ed together reproduce the key.
How do I do this?
|
I have a 128 bit encryption key that I would like to break up into three parts that when XOR'ed together reproduce the key. How do I do this? |
||||
|
|
Pick two other 128 bit values at random (random_1 and random_2), then work out the equations to see how it works:
Now split xor_1 the same way:
Flipping that equation around, we get:
Now substitute back into the first equation:
So your code will just do |
||||
|
|
|
Just XOR the salt values in and then XOR them out to reverse it. If key' = key ^ salt1 ^ salt2, then key = key' ^ salt1 ^ salt2. It's pretty trivial to implement, but it's also pretty trivial to reverse engineer. What are you trying to protect with this, and who are you trying to protect it from? |
|||||||||||||
|