Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(login): added hashing for passwords #1199

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Sep 26, 2016

  1. fix(login): added hashing for passwords

    Storing passwords in plaintext is a security risk,
    the proper way to store passwords is to store
    only the hash value of the password.
    Hash functions such as SHA are general purpose,
    other solutions like pbkdf2 offer more security by
    making the hash procedure much more computationally
    intensive, preventing some attacks.
    drash-course authored and Augustin Borsu committed Sep 26, 2016
    Configuration menu
    Copy the full SHA
    f614c8d View commit details
    Browse the repository at this point in the history