The document describes the XOR cipher, which encrypts text by applying the bitwise XOR operator to each character using a key. To decrypt, reapplying the XOR function with the same key removes the cipher. An example shows encrypting the plaintext "Z" with the key "3" to produce the ciphertext "Y".
1 of 5
Downloaded 10 times
More Related Content
XOR Cipher
1. 1
XOR Cipher:
denotes the Exclusive OR operation,With this logic, a string of text can be
encrypted by applying the bitwise XOR operator to every character using a given key.
To decrypt the output, merely reapplying the XOR function with the key will remove the
cipher.