Are passwords created with auth.signin already encrypted? #437
Answered
by
inian
pearlslugs
asked this question in
Questions
-
I started to use bcrypt to send passwords, but I realized I didn't know how to compare passwords or if you even could do such a thing. Do I not need to hash passwords? |
Beta Was this translation helpful? Give feedback.
Answered by
inian
Dec 28, 2020
Replies: 1 comment
-
Yes, the passwords are hashed with bcrypt before they are stored in the database. You needn't do that in the application layer. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
J0
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes, the passwords are hashed with bcrypt before they are stored in the database. You needn't do that in the application layer.