-
Notifications
You must be signed in to change notification settings - Fork 17
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
SSL Error #7
Comments
It's unusual for OpenSSL 1.1, which is quite a high version. Could the host or port be the wrong one? Could you please report the output of There could be several private or even secret information about your organization/location. You may consider sending it directly to me privately. The address is |
hi lion! i sent you an email. in case you didn't get the email. |
Ack. I'll check it asap |
I run into the same syndrome today. After capturing the packets for diagnose purpose, it turns out to be a TLS version mismatch. The client attempts to use TLS1.2, while the server sticks to 1.0: Handshake Protocol: Server Hello I can workaround this issue by force the client to use TLSv1.0 through the following: ssl_version=ssl.PROTOCOL_TLSv1 |
Add the extra parameter I mentioned to the ssl.wrap_socket() call. At least this works for me. |
Here in hillstone.py class ClientCore(object): |
thanks but i forced my system to use ssl v1. and it works. |
Hello. I am also seeing this and the workaround doesn't work. Can someone help? Below is the output of
The client is |
No description provided.
The text was updated successfully, but these errors were encountered: