-
Notifications
You must be signed in to change notification settings - Fork 46
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 generation #35
Comments
Who generate password Proxy or client? |
@hartois strange, password is generated on the client side, each time the application runs. To find the problem with the mingw compiler, I think you should look inside the function where the random password is generated. It is located in 2 places:
Probably with Mingw it always picks the same "Random" characters |
Yes, after searching I found that problem in using rd() function in Mingw compiller.
Сan you suggest some kind of another, more correct way? Thanks |
@hartois I don't know if this way it produces completely random passwords. Maybe std::mt19937 mt = std::mt19937(time_t(NULL)); might be better to clean the warning. It still needs investigation if it is ok. |
On Windows Andama on every execution, on different systems generate different ID, but same password.
The text was updated successfully, but these errors were encountered: