Encrypt and decrypt text using a configurable Caesar cipher algorithm
Quick shift presets:
The Caesar cipher is one of the simplest encryption techniques. It works by shifting each letter in the plaintext by a fixed number of positions down or up the alphabet.
For example, with a shift of 3:
Non-alphabet characters (spaces, numbers, punctuation) are not shifted.
To decrypt, simply apply the same shift in the opposite direction.
The Caesar cipher is named after Julius Caesar, who used it with a shift of 3 to protect military messages.
While not secure by modern standards, it's a great introduction to cryptography concepts.