Search code examples
bitwise-operatorsbitwise-or

how to calculate bitwise operation back


i want to crypt some informations with bitwise operations.

For example two numbers with bitwise or: 8 and 1 to 9.

But how can i encrypt it it to get my root nombers?

greetz


Solution

  • You can use a bitwise xor to achieve this, it's known as a xor cipher.