I do programming, and I'm going crazy with one of the problems. In this case, I need to calculate the MD5 line. The line is as follows:
n[c] : Where n is a number and c is a character. For example: b3[a2[c]] => baccaccacc
Everything went fine until they gave me the following line:
1[2[3[4[5[6[7[8[9[10[11[12[13[a]]]]]]]]]]]]]
These lines turn into a line with 6227020800 a . This line is more than 6 GB, so it is almost impossible to calculate it in practical time. So here is my question:
Are there any MD5 properties that I can use here?
I know that there must be a form in order to do this in a short time, and I suspect that this is due to the fact that the whole line has the same character repeated several times.
Lars
source share