26 の可能なキーのそれぞれに対して復号化アルファベットを生成します。
その部分は完了しましたが、辞書にある単語を印刷することはできません。例:「ebv」だけを印刷したい
26 個の可能なキーすべてを出力するのではなく、辞書の単語と一致させるにはどうすればよいですか。
ここに辞書があります: http://www.ics.uci.edu/~kay/wordlist.txt
Alphabet = 'abcdefghijklmnopqrstuvwxyz'
def rotated_alphabet(key:int) -> str:
'''produces a rotated alphabet based on key and adds those letters to the end of alphabet'''
if key > 26:
key = key % 26
new_alphabet = ''
w = Alphabet[0:key]
x = Alphabet.replace(Alphabet[0:key], new_alphabet)
return (x + w)
def Caesar_break(cipher:str) ->str:
infile = open('wordlist.txt', 'r')
wordlist = []
possible = []
decode = []
words = []
for str in infile:
t = str
for i in range(0, 26):
p = rotated_alphabet(i).split()
possible+=p
for y in possible:
decrypt = str.maketrans(y, Alphabet)
decode.append(cipher.translate(decrypt))
for str in decode:
s = str
words.append(s)
print(words)
Caesar_break('eby')
それは出力します:
['ebv', 'dau', 'czt', 'bys', 'axr', 'zwq', 'yvp', 'xuo', 'wtn', 'vsm', 'url', 'tqk', 'spj', 'roi', 'qnh', 'pmg', 'olf', 'nke', 'mjd', 'lic', 'khb', 'jga', 'ifz', 'hey', 'gdx', 'fcw']