I\'m not sure how password hashing works (will be implementing it later), but need to create database schema now.
I\'m thinking of limiting passwords to 4-20 charact
Hashes are a sequence of bits (128 bits, 160 bits, 256 bits, etc., depending on the algorithm). Your column should be binary-typed, not text/character-typed, if MySQL allows it (SQL Server datatype is binary(n) or varbinary(n)). You should also salt the hashes. Salts may be text or binary, and you will need a corresponding column.