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
I have a usecase that I think may not be so unique, I have to support multiple forms of encryption on passwords to log users in due to historical userdata that has those forms of encryption in them until all users move over to the new format.
However, there are two forms of encryption that are secure enough that users need not move off of it bcrypt and pbkdf2
Currently I need to support the following schemes:
bcrypt
pbkdf2
md5
sha256
The text was updated successfully, but these errors were encountered:
I have a usecase that I think may not be so unique, I have to support multiple forms of encryption on passwords to log users in due to historical userdata that has those forms of encryption in them until all users move over to the new format.
However, there are two forms of encryption that are secure enough that users need not move off of it
bcrypt
andpbkdf2
Currently I need to support the following schemes:
bcrypt
pbkdf2
md5
sha256
The text was updated successfully, but these errors were encountered: