Dev Tools

XOR Encrypt/Decrypt

Encrypt and decrypt data using XOR cipher with a repeating key. XOR is symmetric: encrypting again with the same key decrypts.

Key
Input
Output
3b000f1e0a5853320c00091052

About XOR Cipher

XOR cipher is a symmetric encryption where each byte of the plaintext is XORed with the corresponding byte of a repeating key. While simple, it is not secure for real-world use. It is useful for CTF challenges, quick obfuscation, and understanding basic cryptography concepts.

Was this page helpful?

Related tools