Merge branch 'whitehats-sni'

This commit is contained in:
liris
2015-04-14 09:24:15 +09:00
2 changed files with 23 additions and 1 deletions

View File

@@ -158,6 +158,12 @@ WebSocket sample::
ws.connect("wss://echo.websocket.org")
How to enable `SNI <http://en.wikipedia.org/wiki/Server_Name_Indication>`_?
------------------
SNI support is available for Python 2.7.9+ and 3.2+. It will be enabled automatically whenever possible.
Sub Protocols.
----------------------------------------

View File

@@ -24,6 +24,7 @@ import six
import socket
import errno
import os
import sys
if six.PY3:
from base64 import encodebytes as base64encode
@@ -125,7 +126,22 @@ def _ssl_socket(sock, user_sslopt, hostname):
sslopt['ca_certs'] = certPath
sslopt.update(user_sslopt)
check_hostname = sslopt.pop('check_hostname', True)
if sys.version_info[2] >= 9 or (six.PY3 and sys.version_info[2] >= 2):
context = ssl.create_default_context(cafile=sslopt.get('ca_certs', None))
context.options = sslopt.get('ssl_version', context.options)
context.verify_mode = sslopt['cert_reqs']
if 'ciphers' in sslopt:
context.set_ciphers(sslopt['ciphers'])
sock = context.wrap_socket(
sock,
do_handshake_on_connect=sslopt.get('do_handshake_on_connect', True),
suppress_ragged_eofs=sslopt.get('suppress_ragged_eofs', True),
server_hostname=hostname,
)
else:
sock = ssl.wrap_socket(sock, **sslopt)
if (sslopt["cert_reqs"] != ssl.CERT_NONE and check_hostname):
match_hostname(sock.getpeercert(), hostname)