-
-
Notifications
You must be signed in to change notification settings - Fork 264
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
Password Field values are saved as plaintext by default? #1277
Comments
The only difference between password fields and normal text fields is the use of the password input field itself. In the future, we can add options for encryption/hashing of the value during save. |
Cool. |
Hello, I've written up an initial commit for password hashing: #2229 This adds two options to password fields: whether or not you'd like to hash them, and what salt to use. It stores them as 32 byte (256 bit) values using pbkdf2 sha1. I hope this is useful to you as I think password hashing is very important! Looking forward to review. |
Replied on #2229, looks great! |
Going to bump this back to Future Release, for now. Loop fields or bust for 3.0. |
Any news on this? I just noticed that password fields are stored as plain text. Also, one thing I'd like to suggest is that when this is released, all existing passwords fields are automatically changed to be saved as hash, so there's no need to manually update existing posts that were previously saved as plaintext... |
Shouldn't they be hashed at least?
Perhaps have an option in the field definition to choose what kind of encryption to use?
The text was updated successfully, but these errors were encountered: