Lines Matching refs:SSL
40 from eventlet.green.OpenSSL import SSL
75 # We don't want SSL 2.0, SSL 3.0 nor TLS 1.0 in RAD
76 context = SSL.Context(SSL.SSLv23_METHOD)
77 context.set_options(SSL.OP_NO_SSLv2)
78 context.set_options(SSL.OP_NO_SSLv3)
79 context.set_options(SSL.OP_NO_TLSv1)
82 context.set_verify(SSL.VERIFY_PEER, _tls_verify_cb)
86 sock = SSL.Connection(context, sock)