md5 hashes do not get stored in dbase
Status: Pre-Alpha
Brought to you by:
mazen
This is a serious bug I found, Since my php has no
support for the crypt library functions.
So I changed all calls to crypt("BLAH","CRYPT_MD5");
to md5(Blah) (which everybody has) then I started
having tourbles with the passwords, they never
matched, finally I tracked the problem down to the
mysql table, when created the password field is of
length 50 and themd5 hashes have 52 chars, I would
advice to change the password field from a varchar
to a tinytext, so crypted passowrd hashes are sure to
be stored complete in the database ...