It is true! Thank you @aurquiel.aurquiel wrote:In this code
ThisCode: Select all
k = {unknown byte} for (i = 0; i < len(txt); i++) c = txt[i] ^ k print c k = c
Code: Select all
k = c
should be this
Code: Select all
k = txt[i]
The algorithm is wrong so I have wasted a lot of time by doing this challange...
You should correct this...