Column: pwdhash

Type: char

Many web pages give me the bit size, not a character size. Should I use a binary field instead?

link|improve this question

73% accept rate
feedback

3 Answers

up vote 1 down vote accepted

64 bytes when stored in BLOB.

128 characters when stored as hex.

~88 characters when stored as Base64.

link|improve this answer
I used blob. thanks. – Uğur Gümüşhan Dec 5 '11 at 23:22
feedback

Yes, you should use a binary field.
A hash is not a string.

link|improve this answer
feedback

For readability reasons, these are sometimes stored as hexadecimal digits (two digits per byte). So 512 bits requires 64 bytes, which would need a char(128) field. If you used a binary field, it would only need 64 bytes.

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.