How would i go about doing this?And also would it be possible to set up a database with say 3 or 4 usernames and password for a members only bit of a website for tomorrow? Thanks
Ok use PHP and MYSQL, Easiest way possible, Use a MD5 encyption on that, use a salt if you want to, but MD5 is unbreakable,
Ok use PHP and MYSQL, Easiest way possible, Use a MD5 encyption on that, use a salt if you want to, but MD5 is unbreakable![]()
Ah fair enough didn't realise they could crack it now, guess theres always a way around everything.
Yeah good pointIt could be possible to generate a random salt? then loop round until you find it for a more secure hash value?
Just read the link, it's all explained very well.
You only generate a single salt btw....
for tomorrow? Thanks
Though it's considered best practice to use a per-user salt stored alongside the password.
I thought the idea of salting was to have the salt stored somewhere other than your database, effectively making whatever is stored in the database useless without the salt. Surely if your store a salt alongside the hashed password that's just as bad as storing plain text passwords? Or have I missed something major here?![]()