This is a simple Python project that implements the Caesar Cipher encryption and decryption algorithm. It also includes a brute-force tool to decode messages without knowing the original shift key.
The Caesar Cipher is one of the oldest known encryption techniques. It works by shifting each letter in a message by a fixed number of positions down the alphabet.
Original: hello
Shift 3 : khoor
- π Encode a message using a shift key
- π Decode a message with a known key
- π΅οΈ Brute-force decode a message by trying all possible shifts