Vynoe
ENCODE • DECODE • BRUTE FORCE

Caesar Cipher Encoder/Decoder

Encrypt or decrypt text with the classic Caesar shift cipher. Brute force all 25 shifts, use ROT13, and analyze letter frequency.

edit_noteInput Text

tuneShift Value

3

languageAlphabet Mapping (Shift 3)

ABCDEFGHIJKLMNOPQRSTUVWXYZ
arrow_downwardarrow_downwardarrow_downwardarrow_downwardarrow_downwardarrow_downwardarrow_downwardarrow_downwardarrow_downwardarrow_downwardarrow_downwardarrow_downwardarrow_downwardarrow_downwardarrow_downwardarrow_downwardarrow_downwardarrow_downwardarrow_downwardarrow_downwardarrow_downwardarrow_downwardarrow_downwardarrow_downwardarrow_downwardarrow_downward
DEFGHIJKLMNOPQRSTUVWXYZABC

How It Works

1
edit

Enter your text to encrypt or decrypt

2
tune

Set the shift value from 1 to 25

3
bolt

See the result update in real time

4
vpn_key

Brute force to crack unknown shifts

About the Caesar Cipher

history_edu

Ancient Origins

Named after Julius Caesar who used it for military correspondence, the Caesar cipher is one of the oldest and simplest encryption methods. He reportedly used a shift of 3 to protect messages from enemies.

analytics

Frequency Analysis

Since each letter is always shifted by the same amount, the cipher preserves letter frequency. In English, E is the most common letter (~12.7%). By analyzing frequencies in ciphertext, the shift can be determined.

school

Learning Cryptography

The Caesar cipher is the foundation for understanding modern encryption. It introduces key concepts like substitution, key space, and brute force attacks. ROT13 (shift=13) is widely used for spoiler text online.

Frequently Asked Questions

What is the Caesar cipher?expand_more
The Caesar cipher is a substitution cipher where each letter in the plaintext is shifted by a fixed number of positions in the alphabet. For example, with a shift of 3, A becomes D, B becomes E, and so on. It wraps around, so X becomes A.
What is ROT13?expand_more
ROT13 is a special case of the Caesar cipher with a shift of 13. Because there are 26 letters in the English alphabet, applying ROT13 twice returns the original text. It is commonly used online to hide spoilers or puzzle answers.
How does brute force work?expand_more
Since there are only 25 possible shifts (1-25), brute force tries every single one and displays all results. Our tool also uses frequency analysis to highlight which shift produces the most likely English text based on letter frequency patterns.
Is the Caesar cipher secure?expand_more
No. The Caesar cipher is extremely weak by modern standards. With only 25 possible keys, it can be cracked instantly by brute force. It is useful for learning about cryptography but should never be used for real security.
Does it preserve punctuation and numbers?expand_more
Yes. Only English letters (A-Z, a-z) are shifted. Numbers, spaces, punctuation, and special characters pass through unchanged. Letter case is also preserved.
What is frequency analysis?expand_more
Frequency analysis examines how often each letter appears in the ciphertext. In English, the letter E appears about 12.7% of the time, followed by T (9.1%) and A (8.2%). By matching the frequency distribution of the ciphertext to expected English frequencies, the shift value can be determined.