SSLContext.set_ciphers(ciphers)
Set the available ciphers for sockets created with this context. It should be a string in the OpenSSL cipher list format. If no cipher can be selected (because compile-time options or other configuration forbids use of all the specified ciphers), an SSLError
will be raised.
Note
when connected, the SSLSocket.cipher()
method of SSL sockets will give the currently selected cipher.
Please login to continue.