Lines Matching defs:ssl
129 import ssl
133 import OpenSSL.SSL
251 """A wrapper class for OpenSSL.SSL.Connection to provide makefile method
281 """Override SocketServer.TCPServer.__init__ to set SSL enabled
334 client_cert_ = ssl.CERT_REQUIRED
336 client_cert_ = ssl.CERT_NONE
337 socket_ = ssl.wrap_socket(socket_,
340 ssl_version=ssl.PROTOCOL_SSLv23,
344 ctx = OpenSSL.SSL.Context(OpenSSL.SSL.SSLv23_METHOD)
349 socket_ = OpenSSL.SSL.Connection(ctx, socket_)
424 """Override TCPServer.get_request to wrap OpenSSL.SSL.Connection
426 cannot substitute OpenSSL.SSL.Connection.makefile since it's readonly
904 logging.critical('TLS support requires ssl or pyOpenSSL module.')
916 logging.critical('Client authentication requires ssl module.')