コード例 #1
0
ファイル: Connection.py プロジェクト: Hypernode/M2Crypto
 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)
コード例 #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)
コード例 #3
0
ファイル: Connection.py プロジェクト: mcepl/M2Crypto
 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))