-
Notifications
You must be signed in to change notification settings - Fork 1k
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
Authentication rework - draft2 - DONOTMERGE #4220
base: v2.x
Are you sure you want to change the base?
Conversation
sha256_init_ctx (&alt_ctx); | ||
|
||
/* For every character in the password add the entire password. */ | ||
for (unsigned char cnta = 0; cnta < 16 + alt_result[0]; ++cnta) |
Check failure
Code scanning / CodeQL
Comparison of narrow type with wide type in loop condition
retest this please |
1 similar comment
retest this please |
@renecannao Is it will be global variable or per user ? |
@yakirgb : the new variable MUST be global , not just because it is the "default" plugin, but because in MySQL protocol authentication, the server (proxysql in this case) is the first that specifies the default authentication method, even before the client sends its username. |
Thank you for the explain. |
Can one of the admins verify this patch? |
Support for
caching_sha2_password
.New variable
mysql-default_authentication_plugin
.Deprecate variable
admin-hash_passwords
#4218 .Although fully functional, it is still a work in progress.
It also deprecate PR #4136