-
Notifications
You must be signed in to change notification settings - Fork 112
Python 2.7 and PROTOCOL_TLSv1_2 #63
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
What version of 2.7? 2.7.9 (released three years ago) should have this. https://docs.python.org/2/library/ssl.html#ssl.PROTOCOL_TLSv1_2 |
2.7.6 - I guess I should update it. |
I'm having the same problem on macos sierra with python 2.7.10
0.19 works fine. |
I'm running into this problem with 2.7.14 and it looks to me like it's because You can see in a IDLE session that my SSL configuration is working normally and the suggested replacement works fine, but
|
That's strange as "deprecated" just means "you shouldn't use this any more, it could be removed in the future" not, "this is gone." That sounds like a Python bug report that either the implementation or docs need to be updated. |
Yup you are right! This python installation had issues with TLS 1.2 and everything is working after recompiling python with the proper flags. Thank you for the helpful tool! |
Great, just watch out for #64, my server will freeze when using |
The Python 2.7 ssl module does not have a ssl.PROTOCOL_TLSv1_2. This causes django-sslserver version 0.20 to fail. This error goes away when I revert to version 0.19
The text was updated successfully, but these errors were encountered: