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?
|
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?
| |||||
feedback
|
|
I wouldn’t use And I also wouldn’t store the value the So I recommend you to use | |||||||
feedback
|
|
A SHA1 hash is 40 chars long! | |||||
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). | |||
|
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. | |||
|
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. | |||
|
feedback
|