Quote:
Originally Posted by k0nr4d
His issue is very simple - he's using BCRYPT, which generates a different hash for the same string each time it's run. You can literally run it on the same password 100 times and get 100 different hashes. As such, you can't compare strings like you could with a normal salted MD5 or something.
|
Haha, that explains a lot. The good old PHP docs to the rescue...