- Why learn Caesar if it's insecure?
- It's the simplest example of a cipher and teaches the concept. Modern cryptography builds on these foundations. Also useful for CTFs and puzzles.
- What's the best shift?
- Cryptographically none — all shifts are equally breakable. Historically, shift=3 was Julius Caesar's choice. Shift=13 is ROT13 (self-inverse).
- Can I shift non-letters?
- No — digits and punctuation pass through unchanged. Some variants do shift digits too; toggle for that behavior if needed.
- How do I break it?
- Frequency analysis — count letter occurrences; English text has e, t, a, o, i, n as the most common. Match to the cipher and guess the shift. Can be done with a pencil.