// you’re reading...
1 Star2 Stars3 Stars4 Stars5 Stars (12 votes, average: 5.00 out of 5)
Loading...

Project Euler Solutions

Project Euler 59 Solution

Project Euler 59 Solution

Project Euler 59: Using a brute force attack, decrypt the cipher using XOR encryption


Project Euler 59 Problem Description

Project Euler 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 cipher1.txt (right click and ‘Save Link/Target As…’), 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.

Analysis

The encoded message is read as a list of ASCII values from a local file (second Trinket tab, p059_cipher.txt). The decryption process is simplified by limiting the key to three characters from the set {a..z} for only 17,576 possibilities.

Taking the suggestion from the comment below, we look for the space character.

We have to repeat each key cyclically until it’s the same length as the message. For example, if the message is “gduii9iu” and the password is ‘abc’ we must decrypt with ‘abcabcab’.

Solution

Runs < 0.001 seconds in Python 2.7.
download arrowUse this link to get the Project Euler Solution Python 2.7 source.

Afterthoughts

  • ‘ ‘ was selected because it is the most common character in text.
Project Euler 59 Solution last updated

Discussion

One Response to “Project Euler 59 Solution”

  1. the problem also falls rather easily to a frequency analysis attack. split the list in python with [0::3], [1::3], [2::3].. and find largest count occurrences of each num. listing largest counts from each split list show nearly twice as much of the most frequent number as any other. assume that is space and XOR with the actual number that occurs in each to get the password letters

    Posted by speiberg0 | April 15, 2010, 7:03 AM

Post a comment