Message302097
I have a workaround for now:
versions = [ssl.PROTOCOL_TLSv1,
ssl.PROTOCOL_TLSv1_1,
ssl.PROTOCOL_TLSv1_2,
]
firstbytes = s.recv(16, socket.MSG_PEEK)
ss = ssl.wrap_socket(
s,
server_side=True,
certfile="server.pem",
keyfile="server.pem",
# ssl_version=versions[ord(firstbytes[10])-1] # python2
ssl_version=versions[firstbytes[10]-1]
)
How much of an ugly hack is this? :) |
|
Date |
User |
Action |
Args |
2017-09-13 17:07:03 | adrianv | set | recipients:
+ adrianv, christian.heimes, Alex Gaynor |
2017-09-13 17:07:03 | adrianv | set | messageid: <1505322423.74.0.965010925485.issue31453@psf.upfronthosting.co.za> |
2017-09-13 17:07:03 | adrianv | link | issue31453 messages |
2017-09-13 17:07:03 | adrianv | create | |
|