A Python implementation of a Caesar cipher
Project 0, CS 361: Introduction to Computer Security
git clone [email protected]:bzsinger/cipher.git
cd cipher
# encrypt
python Cipher.py -e <shift> <input_file_path> <OPTIONAL_output_file_path>
# decrypt
python Cipher.py -d <shift> <input_file_path> <OPTIONAL_output_file_path>