b54c58f0f9bbb8bcdb1f0ee8d438f6def2d219bb
[cipher-tools.git] / 2013 / solutions.txt
1 1a: caesar_decipher(c1a, 8)
2 1b: caesar_decipher(c1b, 14)
3 2a: affine_decipher(c2a, 3, 3, True)
4 2b: caesar_decipher(c2b, 6)
5 3a: affine_decipher(c3a, 7, 8, True)
6 # with open('2013/mona-lisa-words.txt') as f: mona_lisa_words = [line.rstrip() for line in f]
7 # keyword_break(c4a, wordlist=mona_lisa_words)
8 3b: keyword_decipher(c3b, 'louvigny', 2)
9 4a: keyword_decipher(c4a, 'montal', 2)
10 4b: keyword_decipher(c4b, 'salvation', 2)
11 5a: keyword_decipher(c5a, 'alfredo', 2)
12 5b: vigenere_decipher(c5bs, 'florence')
13