-
Notifications
You must be signed in to change notification settings - Fork 944
Use a default minimum password length of 6 #7499
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
Conversation
|
Size Report 1Affected Products
Test Logs |
Size Analysis Report 1This report is too large (139,506 characters) to be displayed here in a GitHub comment. Please use the below link to see the full report on Google Cloud Storage.Test Logs |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Overall question - if backend is enforcing a min password length why do we still need to add extra logic in SDK? Would backend return 6 instead of null when using the default policy setup in the response?
This is a temporary solution since backend currently returns null. We can remove the extra logic once backend change is done. |
Thanks @renkelvin. Can we add this explanation to password_policy_impl.ts:42 @ch5zzy ? |
Done. |
The backend will enforce a minimum password length of 6 even if no minimum password length is configured. I created a backend bug for this, but we will also default to using this value in the SDK if no minimum length is set.