https://projecteuler.net/problem=59
Each character on a computer is assigned a unique code and the preferred standard is ASCII (American Standard Code for Information Interchange). For example, uppercase A = 65, asterisk (*) = 42, and lowercase k = 107.
A modern encryption method is to take a text file, convert the bytes to ASCII, then XOR each byte with a given value, taken from a secret key. The advantage with the XOR function is that using the same encryption key on the cipher text, restores the plain text; for example, 65 XOR 42 = 107, then 107 XOR 42 = 65.
For unbreakable encryption, the key is the same length as the plain text message, and the key is made up of random bytes. The user would keep the encrypted message and the encryption key in different locations, and without both "halves", it is impossible to decrypt the message.
Unfortunately, this method is impractical for most users, so the modified method is to use a password as a key. If the password is shorter than the message, which is likely, the key is repeated cyclically throughout the message. The balance for this method is using a sufficiently long password key for security, but short enough to be memorable.
Your task has been made easy, as the encryption key consists of three lower case characters. Using cipher.txt (in this directory), a file containing the encrypted ASCII codes, and the knowledge that the plain text must contain common English words, decrypt the message and find the sum of the ASCII values in the original text.
The following cell shows examples of how to perform XOR in Python and how to go back and forth between characters and integers:
In [ ]:
assert 65 ^ 42 == 107
assert 107 ^ 42 == 65
assert ord('a') == 97
assert chr(97) == 'a'
Certain functions in the itertools module may be useful for computing permutations:
In [ ]:
from itertools
In [1]:
#I got help from my Python tutor! He taught me how to do this in Python 2, but then I had to make a number of
#changes to convert it to Python 3.
code = open('p059_cipher.txt').read().replace('\n','').split(',')
#this loops through all the combination possibilities!!!
A = range(97, 123,1)
B = A
C = B
def codebreaker():
for a in A:
for b in B:
for c in C:
decoded = []
passcode = [a,b,c]*(int(len(code)/3))
#This for loop appends characters that were determined from phrase XOR'ed with encoded.
for phrase,encoded in zip(passcode,code):
decoded.append(chr(phrase^int(encoded)))
#I am just going to note here that in Python 2, unichr() is the way to get it back into letters...
# but in Python 3, chr() is... super interesting!
decoded = "".join(decoded)
#decoded must be seperated by nothing since the data came out deliminated with ','... t'was ugly!
if ' the ' in decoded:
#I thought this was interesting: to find the common word of 'the',
#I had to make sure the spaces were also included... so we're searching for ' the '
print (decoded)
for char in [a,b,c]:
print (str(chr(char)))
return
In [2]:
a = codebreaker()
print (a)
#the code is god. Clever.
In [11]:
# This cell will be used for grading, leave it at the end of the notebook.
In [ ]: