-
Notifications
You must be signed in to change notification settings - Fork 35
Deprecate sslmode
in favor of user and implementation configured policies.
#75
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
Comments
I don't recall "verify-full" being around when I wrote it. Also, I don't believe certificate verification had a documented interface (Python's built-in ssl module) when I wrote it as well. |
Postgres also has |
Looks like recent I think the future of Mimicking libpq's connect behavior was one of the more painful features to implement and playing catch-up with features that are primarily intended for |
sslmode
in favor of user and implementation configured policies.
Plan for this will be to introduce the |
I'm having issues getting SSL certificate verification to fail - even when using self signed certificates, different hostnames, or passing a random root ca.
Therefore I think it is safe to assume SSL certificate verification is broken.
ssl.wrap_socket does not verify the hostname, ssl.match_hostname is not used in the code.
And - the sslmode keywords differ from postgresql sslmode keywords, having at least "verify-full" would be good.
The text was updated successfully, but these errors were encountered: