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