Web Application - Storing a Password

前端 未结 2 657
抹茶落季
抹茶落季 2021-02-03 12:48

Have I missed anything? Are there any additional steps storing passwords to the DB?

Storing the Password:
    After as much re

2条回答
  •  滥情空心
    2021-02-03 13:07

    Using BCrypt to handle passwords is the only step, or rather, encompasses the following:

    1. Take password, provide it to BCrypt library.
    2. Store resulting hash.
    3. Compare password to hash.

    You also forgot this link: http://codahale.com/how-to-safely-store-a-password/ which is what you reference with the quote.

提交回复
热议问题