Commit e6838e08 authored by Benjamin Peterson's avatar Benjamin Peterson

reorder cipher prefs

parent 44c77791
......@@ -3166,7 +3166,7 @@ else:
server_context = ssl.SSLContext(ssl.PROTOCOL_TLSv1)
client_context = ssl.SSLContext(ssl.PROTOCOL_SSLv23)
client_context.set_ciphers("AES")
server_context.set_ciphers("RC4:AES")
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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment