rc4 is a long time favorite

This commit is contained in:
Benjamin Peterson 2015-01-07 14:21:22 -06:00
parent 438a8db763
commit f78b78aed4
1 changed files with 2 additions and 2 deletions

View File

@ -3165,8 +3165,8 @@ else:
def test_shared_ciphers(self):
server_context = ssl.SSLContext(ssl.PROTOCOL_TLSv1)
client_context = ssl.SSLContext(ssl.PROTOCOL_SSLv23)
client_context.set_ciphers("AES128")
server_context.set_ciphers("AES128:AES256")
client_context.set_ciphers("RC4")
server_context.set_ciphers("AES:RC4")
stats = server_params_test(client_context, server_context)
ciphers = stats['server_shared_ciphers'][0]
self.assertGreater(len(ciphers), 0)