mysql-operator icon indicating copy to clipboard operation
mysql-operator copied to clipboard

password generation is not satisfied with MySQL password plugin validate_password

Open jianhaiqing opened this issue 5 years ago • 0 comments

when MySQL plugin validate_password is installed, its default values as follows,

mysql> SHOW VARIABLES LIKE 'validate_password.%';
+--------------------------------------+--------+
| Variable_name                        | Value  |
+--------------------------------------+--------+
| validate_password.check_user_name    | ON     |
| validate_password.dictionary_file    |        |
| validate_password.length             | 8      |
| validate_password.mixed_case_count   | 1      |
| validate_password.number_count       | 1      |
| validate_password.policy             | MEDIUM |
| validate_password.special_char_count | 1      |
+--------------------------------------+--------+

If you agree with the password rule, I going to use new password generation algorithm instead of "AlphaNumericString"

jianhaiqing avatar Dec 12 '20 01:12 jianhaiqing