up vote 27 down vote favorite
18
share [g+] share [fb]

I have a simple question which occured when I wanted to store the result of a SHA1 hash in a MySQL database:

How long should the VARCHAR field be in which I store the hash's result?

link|improve this question

3  
If you just googled sha1 click im feeling lucky and you should be on wikipedia where you can find it is always 160 bits. – Tim Matthews Mar 5 '09 at 12:19
feedback

5 Answers

up vote 71 down vote accepted

I wouldn’t use VARCHAR with a variable length but a type with a fixed length. Because a SHA-1 value is always 160 bit long. The VARCHAR would just waste an additional byte for the length of the field that would always be the same.

And I also wouldn’t store the value the SHA1 is returning. Because it uses just 4 bit per character and thus would need 160/4 = 40 characters. But if you use 8 bit per character, you would only need a 160/8 = 20 character long field.

So I recommend you to use BINARY(20) and the UNHEX function to convert the SHA1 value to binary.

link|improve this answer
In PostgreSQL, this would translate to using a bytea field, right? – mvexel Jan 17 '11 at 10:44
@mvexel: No, bytea does only allow 1 to 4 bytes whereas you would need 20 bytes to store a SHA-1 value in binary. But I’m not sure what data type to use instead that would fulfil this purpose the best. Maybe you could ask that in a new question. – Gumbo Jan 17 '11 at 10:55
@Gumbo: You sir, I believe, have done this before! :) – Matt Hanson Sep 23 '11 at 19:49
feedback

A SHA1 hash is 40 chars long!

link|improve this answer
12  
In hex encoding... – Douglas Leeder Mar 5 '09 at 12:10
feedback

Output size of sha1 is 160 bits. Which is 160/8 == 20 chars (if you use 8-bit chars) or 160/16 = 10 (if you use 16-bit chars).

link|improve this answer
feedback

So the length is between 10 16-bit chars, and 40 hex digits.

In any case decide the format you are going to store, and make the field a fixed size based on that format. That way you won't have any wasted space.

link|improve this answer
feedback

You may still want to use VARCHAR in cases where you don't always store a hash for the user (i.e. authenticating accounts/forgot login url). Once a user has authenticated/changed their login info they shouldn't be able to use the hash and should have no reason to. You could create a separate table to store temporary hash -> user associations that could be deleted but I don't think most people bother to do this.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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