I have a problem, maybe a silly question, I want to store data in a database after I hash with the SHA1 algorithm. However, at a future time, the size in database will increase because size words in SHA1 is big.

Can we decrease the size of SHA1 algorithm, maybe half the size. I'm sorry for my silly question, and for my bad English. Thanks. :D

I am using JAVA.

link|improve this question

What do you need the hash for? Which hashfunction and output size is required depends a lot on what you want to do with it. – CodeInChaos Jun 6 '11 at 10:33
feedback

3 Answers

up vote 8 down vote accepted

Is 20 bytes per hash(assuming binary storage) really too much? If you currently use hex encoding switching to binary saves you 20 bytes per hash. Base64 saves about 10 bytes compared to hex.

If you simply truncate a cryptographic hash it is still a good cryptographic hash, but with a reduced output size. What output size you need depends on your application.

Integrity checks against random changes can use a much shorter hash of 32-64 bits and don't need a cryptographic hash functions.

If you need uniqueness you should have >>2*log_2(entries) bits in your hash (See birthday paradox). At around 120 bits it's similar to a GUID/UUID (There is a sha1 based generation mode for GUIDs)

If you want cryptographic strength I'd avoid going below 128bits.

link|improve this answer
great,i think this is the best answer,thank you very much..:) – fahmi Jun 6 '11 at 10:34
feedback

If you reduce it it is no more SHA1 :). You have to think of a different algorithm

link|improve this answer
@Chaturanga,thanks :D – fahmi Jun 6 '11 at 10:31
feedback

No; a SHA-1 hash has a size of 160 bits by definition. I strongly doubt that the size of the hash will be a problem; I suppose that you have other data in your database as well? Most likely, you will find that other parts of the data contribute even more to the database size. And how many rows to you expect to have with these hashes?

However, there is a size difference between storing the hash as a string (this will take at least 40 bytes, depending on the string encoding) and storing it as binary data (this will take 20 bytes).

You can switch to another algorithm, as others have noted, but that might not be a good choice from a security perspective - the shorter the output length of a hash algorithm is, the weaker it is.

link|improve this answer
thanks – fahmi Jun 6 '11 at 10:32
1  
Base64 is still a human readable string, but does need less than 40 bytes. – CodeInChaos Jun 6 '11 at 10:34
@CodeInChaos: True; that is also an option. – Aasmund Eldhuset Jun 6 '11 at 10:35
i want to store a key in transaction information,so maybe your suggest is good about encoding..thanks.. – fahmi Jun 6 '11 at 10:40
feedback

Your Answer

 
or
required, but never shown

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