tcpx

// security

Caesar Cipher

Encrypt and decrypt text using Caesar cipher algorithm.

configuration
113 (ROT13)25
alphabet shift
original
ABCDEFGHIJKLMNOPQRSTUVWXYZ
shifted (+3)
DEFGHIJKLMNOPQRSTUVWXYZABC
actions
plaintext0 chars
letters 0
ciphertext

Encrypted text will appear here.

all possible shifts

Enter text to brute-force all 25 shifts.

about caesar cipher
How it works
Each letter shifts a fixed number of positions: E(x) = (x + k) mod 26
Security
Only 25 keys — trivially broken by brute force or frequency analysis
ROT13
Shift of 13; applying it twice returns the original text
Examples
HELLO → KHOOR (shift 3) · HELLO → URYYB (ROT13)