Last post:
While that's kinda true, using MD5 over MD5 stops that so if a collision is found its useless!
plus theirs a differences between getting into someones account and getting their "password".
there has never been a collision found yet for an MD5 hash.
REALLY!
Oh look here!
<?php
echo md5_file(dirname(__FILE__)."/file0.txt");
echo "<br>\n";
echo md5_file(dirname(__FILE__)."/file1.txt");
a4c0d35c95a63a805915367dcfe6b751<br>
a4c0d35c95a63a805915367dcfe6b751
@gevans:
You increase the odds in the second one, however i also use MD5 over MD5
the second code has a 1 in 1.4972881278886E-19 chance of a collision (that's if salt isn't used)
to workout the chances of the first or with salt your need to take into account the min to max length of the salt and password.
New: post
Reply to CV:
Well this the main part, this whole thread is about "cracking MD5", not about getting into accounts. no matter what you use, if you allow little common passwords and the user uses them, well that's nothing to do with the encryption strength!
NB:Also by adding salt that makes the password harder as the reversed hash would be password+salt, so if the salt was 128chars, then thats a long password, but its nothing to do with MD5!
[attachment deleted by admin]