Skip to content

Tag: bcrypt

crypt password storage and retrival php

I am trying to set up a secure login & register system using crypt() as I have read that that is php’s stored function for bcrypt I am registering a user but taking their password and and then crypting it. I then store $hashed_password in the db then when the user logs in I am trying to match the pa…