Example #1
0
 def get_cipher_list(self, idx=0):
     """Return the cipher suites for this connection as a string object."""
     return m2.ssl_get_cipher_list(self.ssl, idx)
Example #2
0
 def get_cipher_list(self, idx=0):
     # type: (int) -> str
     """Return the cipher suites for this connection as a string object."""
     return m2.ssl_get_cipher_list(self.ssl, idx)
Example #3
0
 def get_cipher_list(self, idx=0):
     # type: (int) -> str
     """Return the cipher suites for this connection as a string object."""
     return six.ensure_text(m2.ssl_get_cipher_list(self.ssl, idx))