-
Notifications
You must be signed in to change notification settings - Fork 86
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
Generated passwords look very similar #62
Comments
Hi, It should be expected: the combination of the master password + realm string should create a unique deterministic pseudo-random generator. Notice, that the requested password length is not contributing here yet. Later, a filtering algorithm just takes the input from this DPRNG and tries to convert it to a string, which passes the requested password spec (including length). The result is than in most cases the string would be similar, just truncated to the requested length unless the bigger string stops conforming to the password spec (and in which case it would be just discarded and the next string from the DPRNG taken until it conforms). see the relevant code here: Lines 67 to 156 in 2d48d3b
|
Guys,
Just downloaded Linux x64 binary from the release page and while playing with he app I've noticed strange thing:
As you may see the result password with additional character is very similar to the previous password.
The same is for different Master Password and different websites.
Is it the expected behaviour or not?
Thanks,
The text was updated successfully, but these errors were encountered: