Posts Tagged ‘exclusive or’
Cryptography
How XOR Works and Why
The exclusive OR(xor) operation is probably one of the most used and misused operations, in terms of security or simple data encoding. It is quite normal for new computer programmers to confuse themselves with this instruction....
C/C++ Programming
How The XOR Operation Works and How to Use it In C++ to Create a Small Encryptor
Exclusive OR (xor) is probably one of the most used operations in today’s encryption schemes. If you’re into creating some kind of encryption in your programs, you would need to utilize XOR operations, as XOR is a p...