codebreaker
codebreaker copied to clipboard
"Hacking Secret Ciphers with Python" programs
There are small typos in: - codebreaker_unit_tests.py - freqFinder.py Fixes: - Should read `initialize` rather than `intialize`. - Should read `folders` rather than `folder as`. Semi-automated pull request generated by...
` # value in name) with the the n,e and d,e integers written in them,` Should be: ` # value in name) with the n,e and d,e integers written in...
` # If a letter is solved, than it cannot possibly be a potential` Should be: ` # If a letter is solved, then it cannot possibly be a potential`
`If transpositionCipherFile.py is run (instead of imported as a module)` Should be: `If transpositionFileCipher.py is run (instead of imported as a module)`
`# handle the wrap-around if num is 26 or larger or less than 0` Should be: `# handle the wrap-around if num is less than 0` When decrypting, the number...
line 64 in makeRsaKeys.py should be ` print('The private key is a %s and a %s digit number.' % (len(str(privateKey[0])), len(str(privateKey[1]))))` instead of: ` print('The private key is a %s...