Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 679 Bytes

README.md

File metadata and controls

18 lines (14 loc) · 679 Bytes

Caesar Cipher CLI

Caesar Cipher in the command-line made in Python.

Originally made for my school's computer science class homework assignment, but expanded upon to include extra features for fun.

Features

  • Classic Caesar Cipher encryption gameplay
  • Customisable encryption key
  • Works for both capital and lowercase letters and numbers (alphanumeric)
  • Cycles back if out of bounds (e.g.: Z + 1 -> A ; 9 + 1 -> 0)
  • Decryption supported by inputting the negative of encryption keys

Usage

Local

  • Download Python 3.X.X and main.py and run main.py

Online