Magnus Ekhall from Sweden has solved my Playfair challenge from April 2019. With only 30 letters, this ciphertext is the shortest of its kind ever broken.
The Playfair cipher, invented by Charles Wheatstone in the 19th century, can be broken with hill climbing (enhanced with simulated annealing), provided that the ciphertext is long enough. Last year, George Lasry, …
… solved a Playfair cryptogram consisting of only 50 letters I had introduced on this blog. As far as I know, this success set a new world record in breaking a Playfair with a random matrix (US cryptanalyst Alf Monge broke a 30 letter Playfair in the 1930s, but this one was based on a matrix created with a keyword, which made things easier).
In order to check if it is possible to do better, I published a Playfair challenge based on a ciphertext with only 40 letters. This time, Nils Kopal solved it and improved the world record.
How the Playfair works
The Playfair cipher substitutes letter pairs. So, the cleartext needs to be written as a sequence of letter pairs (the following cleartext is a Shakespeare quote taken from Robert Thouless’ life-after-death experiment):
BA LM OF HU RT MI ND SG RE AT NA TU RE SS EC ON DC OU RS EC HI EF NO UR IS HE RI NL IF ES FE AS T
The Playfair cipher requires that no letter pair consist of two equal letters. Therefore, we add an X between the two Ss:
BA LM OF HU RT MI ND SG RE AT NA TU RE SX SE CO ND CO UR SE CH IE FN OU RI SH ER IN LI FE SF EA ST
If the number of letters in the cleartext is odd, another X needs to be added at the last position, but this is not the case here. Next, we set up a 5×5 matrix containing the letters of the alphabet in a random order (we identify the J with the I, in order to get a 25 letter alphabet):
S U R P I E A B C D F G H K L M N O Q T V W X Y Z
As you might have noticed, the letter order in the matrix has been derived with the keyword SURPRISE. It would be more secure to use a completely random order of the letters.
Now, we replace the cleartext letter pairs (BA, LM, OF, HU, …) according to the three Playfair rules. Here are the rules in a diagram:
Here are the same rules in text form (I refer to the letter pair to be replaced as XY):
- If X and Y are not in the same column and not in the same row (this is the most frequent case), form a rectangle and replace the two letters by the other two corner letters (the upper cleartext letter is replaced by the other upper letter in the rectangle, the lower cleartext letter by the lower one). For instance, LM becomes FT.
- If the two letters stand in the same row, each one is replaced by its right neighbor. Here, BA becomes CB.
- If the two letters stand in the same column, each one is replaced by its lower neighbor. In our example, AN becomes GW.
When we apply the Playfair rules on our cleartext with our 5×5 matrix, we get the following ciphertext:
CB FT MH GR IO TS TA UF SB DN WG NI SB RV EF BQ TA BQ RP EF BK SD GM NR PS RF BS UT TD MF EM AB IM
A new Playfair challenge
After Nils had successfully attacked my 40-letters cryptogram, I decided to take a 30-letters plaintext for my next Playfair chalenge. Here’s the ciphertext CrypTool 2 delivered:
SXCREDBQUGVZRSMNDSIKRKWRSGNSNXVM
This ciphertext has 32 letters, which means that two additinal letters were added to avoid doublings and/or a single letter at the end. As I didn’t use a keyword for the matrix, a dictionary attack did’t work.
Challenge solved
Two days ago, I received an email from Magnus Ehall, whom I know from the HistoCrypt conferences in Mons and Uppsala. Magnus is a Swedish computer engineer, working in software development. He has always had an interest for codes and ciphers, and breaking them. At the moment, his main interest is with the Turing bombes and the US Navy bombes. Magnus provided me a some great pictures of the Rök runstone, which I published in a blog post.
In his mail, Magnus told me that he had solved the 30 letters Playfair challenge. The solution he found was:
TAKETHELASTXTRAINTOYORKONSUNDAYX
This was correct. The first X was included to avoid a doubled T, the second one to make the number of letters even. The original plaintext is: TAKE THE LAST TRAIN TO YORK ON SUNDAY
Thankfully, Magnus provided me a report on how he had broken the Playfair challenge. Here it is:
I wrote a simulated annealing programme, first in Python but later in C. I did not get very good results at first, but after listening to George Lasry’s presentation (and discussing the subject at the conference dinner) on how he solved the 40 letter Playfair challenge at the excellent HistoCrypt conference in Mons, I got motivated to give it another try.
In short I would like to describe the algorithm as a simulated annealer, with restarts and pruning. As the algorithm goes along to find local and global (?) maximums, I store the already tried maximums in a hash table and not allow the algorithm to go to that state again. This uses quite a lot of memory.
I log all states that produce a score over a certain limit and then sift through this output both manually and with small helper scripts that for example highlights words that exist in a dictionary.
Letting the programme run repeatedly for a week or so, I found the solution amongst the quite large number of possible solutions logged. It should be noted that the solution did not have an extremely good score, so there was probably quite a bit of luck involved as well.
I can only congratulate Magnus on this great success. Once again, I’m overwhelmed by my reader’s skills in breaking tough cryptograms. I’m proud that my challenges stimulate so much valuable research. Thanks to Magnus and all other codebreakers among my readers.
Follow @KlausSchmeh
Further reading: A mird in the hand is worth two in the mush: Solving ciphers with Hill Climbing
Linkedin: https://www.linkedin.com/groups/13501820
Facebook: https://www.facebook.com/groups/763282653806483/
Kommentare (15)