项目作者: benjimr
项目描述 :
GUI based decoders for Caesar Cipher and Vigenere Cipher.
高级语言: Python
项目地址: git://github.com/benjimr/Caesar-Cipher-and-Vigenere-Cipher-Decoders.git
GUI based decoders for Caesar Cipher and Vigenere Cipher.
Caesar Cipher Brute Force Decoding Steps (English words only)
- Take the encrypted message.
- Loop through all possible keys.
- When each key is applied, check how many words present in the output are in the English dictionary.
- Display the output and key that had the most English words present.
- Allow user to cycle through keys for themself in case of error.

Vigenere Cipher Decoding Steps
- Take encrypted message.
- Take the key.
- Apply key to encrypted message.
- Display the decrypted message.
