-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
Add support for sha256_password pluggable authentication #625
Comments
It seems that is related on #552 , and the implement is depends on it will be accepted or not. |
Previously I made a patch supporting auth switching to native password (sha1) on this and I definitely vote that we should start sha256 support now. |
Just a friendly note that with MySQL 8.0.4-rc comes a new default for authentication: caching_sha2_password is now used when creating users. If you want to use a go-sql-driver/mysql supported authentication plugin, you have to create/alter users to use a different one. As as workaround, you could use the MySQL Native Password plugin:
Note that you will need to explicitly set "allowNativePasswords=True" in the DSN. (I did implement auth plugins in MySQL Connector/Python, I know the pain) |
Hello, if you are looking for help, MySQL engineers working on authentication plugins and connectors will be happy to assist you. You can reach us on the MySQL Community Slack (http://lefred.be/mysql-community-on-slack/). Keep the good work ! |
https://dev.mysql.com/doc/refman/8.0/en/sha256-pluggable-authentication.html
Edit: Note that support for
caching_sha2_password
is already implemented. See #794.The text was updated successfully, but these errors were encountered: