├── README.md ├── affineCipher.py ├── affineHacker.py ├── caesarCipher.py ├── caesarCipherBruteforcer.py ├── cryptomath.py ├── detectEnglish.py ├── dictionary.txt ├── frequencyAnalysis.py ├── makeWordPatterns.py ├── simpleSubHacker.py ├── simpleSubstitutionCipher.py ├── transitionCipherTester.py ├── transpositionCipher.py ├── transpositionCipherBruteforcer.py ├── transpositionCipherDecryptor.py ├── transpositionFileCipher.py ├── vigenereCipher.py ├── vigenereDictionaryHacker.py └── vigenereHacker.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyWaddell/Cracking-Codes-With-Python/HEAD/README.md -------------------------------------------------------------------------------- /affineCipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyWaddell/Cracking-Codes-With-Python/HEAD/affineCipher.py -------------------------------------------------------------------------------- /affineHacker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyWaddell/Cracking-Codes-With-Python/HEAD/affineHacker.py -------------------------------------------------------------------------------- /caesarCipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyWaddell/Cracking-Codes-With-Python/HEAD/caesarCipher.py -------------------------------------------------------------------------------- /caesarCipherBruteforcer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyWaddell/Cracking-Codes-With-Python/HEAD/caesarCipherBruteforcer.py -------------------------------------------------------------------------------- /cryptomath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyWaddell/Cracking-Codes-With-Python/HEAD/cryptomath.py -------------------------------------------------------------------------------- /detectEnglish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyWaddell/Cracking-Codes-With-Python/HEAD/detectEnglish.py -------------------------------------------------------------------------------- /dictionary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyWaddell/Cracking-Codes-With-Python/HEAD/dictionary.txt -------------------------------------------------------------------------------- /frequencyAnalysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyWaddell/Cracking-Codes-With-Python/HEAD/frequencyAnalysis.py -------------------------------------------------------------------------------- /makeWordPatterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyWaddell/Cracking-Codes-With-Python/HEAD/makeWordPatterns.py -------------------------------------------------------------------------------- /simpleSubHacker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyWaddell/Cracking-Codes-With-Python/HEAD/simpleSubHacker.py -------------------------------------------------------------------------------- /simpleSubstitutionCipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyWaddell/Cracking-Codes-With-Python/HEAD/simpleSubstitutionCipher.py -------------------------------------------------------------------------------- /transitionCipherTester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyWaddell/Cracking-Codes-With-Python/HEAD/transitionCipherTester.py -------------------------------------------------------------------------------- /transpositionCipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyWaddell/Cracking-Codes-With-Python/HEAD/transpositionCipher.py -------------------------------------------------------------------------------- /transpositionCipherBruteforcer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyWaddell/Cracking-Codes-With-Python/HEAD/transpositionCipherBruteforcer.py -------------------------------------------------------------------------------- /transpositionCipherDecryptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyWaddell/Cracking-Codes-With-Python/HEAD/transpositionCipherDecryptor.py -------------------------------------------------------------------------------- /transpositionFileCipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyWaddell/Cracking-Codes-With-Python/HEAD/transpositionFileCipher.py -------------------------------------------------------------------------------- /vigenereCipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyWaddell/Cracking-Codes-With-Python/HEAD/vigenereCipher.py -------------------------------------------------------------------------------- /vigenereDictionaryHacker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyWaddell/Cracking-Codes-With-Python/HEAD/vigenereDictionaryHacker.py -------------------------------------------------------------------------------- /vigenereHacker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AnthonyWaddell/Cracking-Codes-With-Python/HEAD/vigenereHacker.py --------------------------------------------------------------------------------