vote up 5 vote down star
2

Two questions actually:

1) Does there exist a 128-bit number whose md5 hash is itself?

X == md5(X)   - does 'X' exist and can it be found without brute force?

2) Does there exist two 128-bit md5 digests that hash to each other?

Y == md5(X) && X == md5(Y)  - do 'X' and 'Y' exist and can they be found without brute force?

Related:

MD5 Fixed Point

flag
The first question has been discussed at length here and on XKCD forums. The second question prevents this from being a duplicate. – Bill the Lizard Jun 3 at 19:20
And here is perhaps the first non-comic link to XKCD on Stack Overflow. echochamber.me/viewtopic.php?f=12&t=29547/… – Bill the Lizard Jun 3 at 19:21
@Bill the Lizard: It's xkcd, not XKCD ;-) – Zifre Jun 18 at 16:10

2 Answers

vote up 1 vote down

This is not the same as the Kember Identity Search.

Consider the differences of the following cases:

md5(X) == X

For this to be true, X must be a 128-bit value.

This is not the same as the following:

bin2hex(md5('string')) == 'string'

Which is what the Kember Identity Search is actually seeking. If you take a look at any of the search implementations on their site, you can easily see that they are working with 32-character strings, not with 128-bit numbers, as the input to the md5 function, and thus are not seeking md5(X) == X.

I am not the first to point this out either, you might find This Article Directly Targeting The "Kember Identity" by Kris Thompson enlightening.

link|flag
vote up 0 vote down

(Both answers were found while reading this link)...

To answer question (1), consider the following:

Brute forcing all md5(x)=x means checking 2.4x10^38 values. My quick test implementation can test some 2.3x10^9 values per hour, meaning it would take almost exactly 10^29 hours to brute force it. Let's say I get a million people to help me out, then we're down to 10^23 years.. And let's say the algorithm gets a million times faster with some clever optimization, and we're down to 10^17 years. And let's pretend computers get a million times faster over night, and we're down to 10^11 years, which is significantly longer than the universe has existed for.

I would imagine the above could be culled faster with some smart force algorithm†.

To answer question (2), the following two blocks have the same md5 hash:

d131dd02c5e6eec4693d9a0698aff95c 2fcab58712467eab4004583eb8fb7f89
55ad340609f4b30283e488832571415a 085125e8f7cdc99fd91dbdf280373c5b
d8823e3156348f5bae6dacd436c919c6 dd53e2b487da03fd02396306d248cda0
e99f33420f577ee8ce54b67080a80d1e c69821bcb6a8839396f9652b6ff72a70

and

d131dd02c5e6eec4693d9a0698aff95c 2fcab50712467eab4004583eb8fb7f89
55ad340609f4b30283e4888325f1415a 085125e8f7cdc99fd91dbd7280373c5b
d8823e3156348f5bae6dacd436c919c6 dd53e23487da03fd02396306d248cda0
e99f33420f577ee8ce54b67080280d1e c69821bcb6a8839396f965ab6ff72a70

6 bytes differ between the two blocks (bytes 39, 91, 119, 167, 219, and 247), and the hash is 79054025255fb1a26e4bc422aef54eb4. I would imagine the blocks were discovered by some kind of smart force algorithm†, though I don't know for sure.

†: brute force taking into account the analyzed weaknesses of md5

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.