-
Notifications
You must be signed in to change notification settings - Fork 838
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
Support for SCRAM Authentication #451
Comments
I agree it'd be good to have, but it's not something I can tackle right now. |
@jackc still good that you signal agreement with the feature wish. Thanks for the reply. ;) |
|
This is also something that lib/pq doesn't support and for which there are already patches for lib/pq, so maybe it wouldn't be too hard to port. See lib/pq#817 |
It's been merged into lib/pq. Bump :) |
Okay. Here it is: 5044e84 |
Thanks! |
@bernhardreiter: Thanks a lot for all about SCRAM. Linked to: |
The implementation was done by @jackc, he deserves all the credit. :)= |
Ah sorry, thanks to @jackc for the commit and @bernhardreiter for the request! Since PostgreSQL 13, there is SCRAM-SHA-256-PLUS, if you want to add :) |
It would be nice if pgx could support the SCRAM Authentication method offered by PostgreSQL
since version 10.
https://www.postgresql.org/docs/10/static/auth-methods.html#AUTH-PASSWORD
This method saves password in a more secure manner based on RFC7677, so that they are more safe
if the database gets copied from the server or found in a backup. According to https://pages.nist.gov/800-63-3/sp800-63b.html#sec5 that is recommended.
The text was updated successfully, but these errors were encountered: