You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Current DB Schema uses VARCHAR(50) column to store customer passwords. Which is too short to store passwords hashed via bcrypt. BCrypt is de-facto standard way when it comes to storing passwords.
Please consider changing Customer#password to be VARCHAR(60) to allow using bcrypt.
The text was updated successfully, but these errors were encountered:
Current DB Schema uses VARCHAR(50) column to store customer passwords. Which is too short to store passwords hashed via bcrypt. BCrypt is de-facto standard way when it comes to storing passwords.
Please consider changing Customer#password to be VARCHAR(60) to allow using bcrypt.
The text was updated successfully, but these errors were encountered: