Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
5  
Seems to me that all you would do is increase the chances of collisions. – David Brainer-Banker Dec 6 '11 at 22:01
1  
Why are you cropping a hash? That is horrible idea. All that's doing is increasing the changes of a hash collision. Also, you cannot "decrypt" a hash, it's one way. For "real" security, salt your hashes, or use a library like PHPass. – Rocket Hazmat Dec 6 '11 at 22:03
1  
In other words: No, a cropped hash will not be more secure and should actually 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. – David Brainer-Banker Dec 6 '11 at 22:04
1  
@EmanuilRusev Collisions occur when two values result in this same hash. A good hashing function will typically have a very low rate of collisions but as your remove characters from the resulting hash you gradually increase the chances that you have removed what made that hash distinctive from another. – David Brainer-Banker Dec 6 '11 at 22:07
2  
Edit, md5 is not a method of encryption and there for cannot be "decrypted" – Rook Dec 6 '11 at 23:55
show 11 more comments

3 Answers

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:

0
1
2
3
4
5
6
7
8
9
A
B
C
D
E
F

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.

share|improve this answer
I understand that the approach is more prone to brute force attacks, but I'm not too worried about it. The hashes I would use would be at least 32 characters long and instead of base 16 they would be more like base 64. – Emanuil Rusev Dec 6 '11 at 22:07
Are there any other concerns that come to mind? – Emanuil Rusev Dec 6 '11 at 22:08
1  
Don't forget that there are an infinite number of inputs that hash into any given 256-bit hash code and an infinite number of inputs that hash into any given 64-bit hash code. If your users pick passwords like "123abc" or "password" that appear in common password lists, it'll be just as easy to brute-force guess the password either way. – sarnold Dec 6 '11 at 22:19
1  
@sarnold: Too bad there still isn't a cure for stupid users. I just make it as hard as possible for my users to be stupid by enforcing strong passwords. – PeeHaa 埽 Dec 6 '11 at 22:21
2  
@PeeHaa: I hope for the sake of your users that the passwords you force to be strong are more of the variety suggested by pwqgen. :) – sarnold Dec 6 '11 at 22:24
show 1 more comment

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 a6shp and ghsa2 and apple all reduce to the same cropped hash then 1) they will have been able to log into your system the minute they encountered the first working result, but also 2) they will have a pretty good idea which result was actually the password. If you crop off so much data that literally tens of thousands of combinations would match then it becomes harder (but not that much harder) and yet the security of your own system is now substantially decreased. This goes on and on until the number of collisions nears infinity.

share|improve this answer

Cropping your hashes is a REALLY BAD IDEA.

Consider the following two passwords:

password1
password2

With the following hashes:

732654732854235
732654732837454

Now let's crop those hashes to say 10 chars. Now we get:

7326547328
7326547328

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:

  • used crypt
  • used unique salts for every password
share|improve this answer
If your crops are longer (32 characters or even more) and instead of base 10 your hashes are in base 64, would you have that concern? – Emanuil Rusev Dec 6 '11 at 22:16
@EmanuilRusev: It's unlikely with bigger strings, but why risk it? Regardless, cropping your hashes is a horrible idea. – Rocket Hazmat Dec 6 '11 at 22:17
1  
@EmanuilRusev: It doesn't matter what algo / digest / encoding / whatever you use. You are always making it less secure so why would you want that? – PeeHaa 埽 Dec 6 '11 at 22:18
1  
@EmanuilRusev: You cannot "decrypt" a hash (you can crack it, and no, it doesn't make it harder, it makes it easier). Also, unless your strings are 1000 characters long, don't worry about memory usage. All you're doing is removing security and gaining nothing. – Rocket Hazmat Dec 6 '11 at 22:20
1  
@EmanuilRusev I added a little bit to my answer above dealing with this. What you need to realize is that the only perceived benefit you could possibly receive is actually a direct bi-product of the number of collisions (and therefore reduced security). – David Brainer-Banker Dec 6 '11 at 22:35
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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