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 guess the title is pretty self-explanatory: it would be great if the passwords were also checked for duplicates, as it's best practice to not re-use passwords.
Off the top of my head and without diving into the codebase, I think this feature would pose 2 immediate challenges:
All passwords need to be hashed upfront and kept in memory to provide somewhat reasonable speed. This might be an issue for VERY large password-store's, but should generally be fine and could also be opt-in/-out.
What happens if only a subset of the password-store is audited. In this case, I think it's fine to also use the same subset to search for duplicates, as the user specifically requested not to touch the rest.
The text was updated successfully, but these errors were encountered:
Hey,
first of all, thanks for the great project!
I guess the title is pretty self-explanatory: it would be great if the passwords were also checked for duplicates, as it's best practice to not re-use passwords.
Off the top of my head and without diving into the codebase, I think this feature would pose 2 immediate challenges:
The text was updated successfully, but these errors were encountered: