tsoteen89 / cochlearProject

Website development for Cochlear
1 stars 0 forks source link

Password Hashing #321

Closed James55 closed 9 years ago

James55 commented 9 years ago

As users can now be registered, passwords will be hashed on registration with the user's generated salt. The passwords currently in the database need to be hashed the same way user's registered passwords are being hashed.

Current hashing method is hash('sha256', (password . salt))

James55 commented 9 years ago

Passwords are all hashed, login checks against the hashed passwords