vote up 1 vote down star
3

I have some strings that have been encrypted using the php function crypt()

http://uk2.php.net/crypt

The outputs look something like this:

$1$Vf/.4.1.$CgCo33ebiHVuFhpwS.kMI0
$1$84..vD4.$Ps1PdaLWRoaiWDKCfjLyV1
$1$or1.RY4.$v3xo04v1yfB7JxDj1sC/J/

While I believe crypt() is using the MD5 algorithm, the outputs are not valid MD5 hashes.

Is there a way of converting the produced hashes into valid MD5 hashes (16-byte hex values)?

Thanks!


Update:

Thanks for the replies so answers so far. I'm pretty sure the crypt function used is using some sort of MD5 algorithm. What I'm looking to do is convert the ouput that I have into an MD5 hash that looks something like the following:

9e107d9d372bb6826bd81d3542a419d6  
e4d909c290d0fb1ca068ffaddf22cbd0  
d41d8cd98f00b204e9800998ecf8427e

(taken from Wikipedia: http://en.wikipedia.org/wiki/MD5)

Is there a way of converting from the hashes I have to ones like the above?

flag
Could you please expound a bit on what it is you're trying to accomplish? No offense meant, but this sounds like step 1 in a recipe on how to conduct a rainbow table attack on a password database, and people might be reluctant to help unless convinced it's not for evil purposes... – Mihai Limbasan Jan 20 at 16:18
One result is base64 encoded, the other is just base16 encoded. – Edouard A. Jan 20 at 16:28

4 Answers

vote up 0 vote down

From the documentation, this depends on the system. You can force the algorithm used by setting the salt parameter. From the docs:

The encryption type is triggered by the salt argument. At install time, PHP determines the capabilities of the crypt function and will accept salts for other encryption types. If no salt is provided, PHP will auto-generate a standard two character salt by default, unless the default encryption type on the system is MD5, in which case a random MD5-compatible salt is generated.

link|flag
vote up 0 vote down

From http://uk2.php.net/crypt:

crypt() will return an encrypted string using the standard Unix DES-based encryption algorithm or alternative algorithms that may be available on the system.

You want: http://uk2.php.net/manual/en/function.md5.php

Calculates the MD5 hash of str using the ยป RSA Data Security, Inc. MD5 Message-Digest Algorithm, and returns that hash.
If the optional raw_output is set to TRUE, then the md5 digest is instead returned in raw binary format with a length of 16. Defaults to FALSE.

link|flag
vote up 1 vote down

$1$ indeed means that this is a MD5 hash, but crypt generates a random salt. This is why you find a different MD5 value. If you include the generated salt you will find the same result.

The salt is base64 encoded in the output, as the hash.

The algorithm used is a system wide parameter. Generally this is MD5, you are right.

link|flag
vote up 1 vote down

I believe the answer to my original question is no, you can't convert from one format to the other.

The hashes generated by php crypt() appear to be generate by a version of the FreeBSD MD5 hash implementation created by Poul-Henning Kamp.

http://people.freebsd.org/~phk/

link|flag

Your Answer

Get an OpenID
or

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