adam
adam

Reputation: 63

How can I undo/reverse an XOR with PHP?

I'm a bit confused by XOR, conceptually. I have an light encryption function I need to decrypt, and I'm not sure how to get it working correctly.

If my value was originally generated by:

$val = dechex($seed^$id);

Then, elsewhere, I have the corresponding $val and $seed, how can I generate the $id?

Upvotes: 6

Views: 10226

Answers (1)

Jeremiah Willcock
Jeremiah Willcock

Reputation: 30999

XOR is its own inverse, so you can just XOR $val by $seed again and get $id. You might need to run hexdec on $val first, though.

Upvotes: 24

Related Questions