Cropping a hash should mean losing some of the data it represents so I was wondering if cropped hashes are harder to crack and more specifically if storing cropped password hashes for user authentication is an idea worth examining.
|
|
Take this idea to its extreme: assume you're storing only the first hex character of your hashed passwords. All your users' passwords would hash into one of sixteen values:
I'll admit that it would be very difficult for John The Ripper to brute-force decode these passwords, but it would also let someone guess another user's password in about eight tries on average. Ooops. If anything, you should store longer hashes. Salt well instead. |
|||||||||||||||||
|
|
A quick summary of what I posted in the comments above: Cropping a hash will result in a greater likelihood of collisions. Collisions occur when two values result in the same hash. A good hashing function will typically have a very low rate of collisions but as you remove characters from the resulting hash you gradually increase the chances that you have removed what made that hash distinctive from another. In other words: No, a cropped hash will not be more secure and will in fact be substantially less secure. The only value would be making it slightly more difficult for an attacker who "solved" your hash to use the results on another system. They would, however, be able to use the results just fine on your system. Salting your hash, on the other hand, makes it less susceptible to rainbow tables and other methods of brute-force decoding while still keeping your collisions to a minimum. Also, it should be noted that when you view cropping the hash as a password-protecting feature you are actually banking on the occurrence of collisions. I assume the only reason you are considering this at all is that you do not want an attacker to be able to use someone's password on another site, because obviously you do not benefit on your own. The fewer bits you remove the smaller the set of collisions and therefore the higher the likelihood that the attacker can still recover (or at least guess) the original password. For example: If the attacker finds that |
||||
|
|
|
Cropping your hashes is a REALLY BAD IDEA. Consider the following two passwords:
With the following hashes:
Now let's crop those hashes to say 10 chars. Now we get:
Wow that sucks. Now I can login with either password1 or password2. If you are worried about a malicious user getting the database with your passwords just make sure you:
|
|||||||||||||||||
|

