Team Members: Kason Sabazan-Chambers, Neil Bhavikatti, Laura Liu
This program can encrypt or decrypt text with a Vigenère Cipher.
You can read more about the Vigenère Cipher on it's Wikipedia Page.
Run the program with python vig.py.
Welcome to Vigenere Cipher Program!
Type 'e' for encryption.
Type 'd' for decryption.
Type 'q' to quit.
Ecrypt (e), Decrypt (d), or quit (q)? e
Provide plaintext:
the quick brown fox jumped over the lazy dog.
Enter the keyword: apple
Ciphered text: twtiuuxrvbb748r u49bj021idm47irm9si 1p 3 s4rd
Ecrypt (e), Decrypt (d), or quit (q)? d
Enter the ciphertext:
twtiuuxrvbb748r u49bj021idm47irm9si 1p 3 s4rd
Enter the keyword: apple
Decrypted text: the quick brown fox jumped over the lazy dog.
Ecrypt (e), Decrypt (d), or quit (q)? q
Thank you for using the Vigenere Cipher program!