Message214422
Well, the doc currently says:
"""Starting from Python 3.2.3, the
ssl module disables certain weak ciphers by default, but you may want
to further restrict the cipher choice. For example::
context = ssl.SSLContext(ssl.PROTOCOL_TLSv1)
context.set_ciphers('HIGH:!aNULL:!eNULL')"""
But after your changes, calling set_ciphers('HIGH:!aNULL:!eNULL') will actually weaken security, so this example should simply be removed (IMHO). |
|
Date |
User |
Action |
Args |
2014-03-22 00:40:50 | pitrou | set | recipients:
+ pitrou, lemburg, ncoghlan, vstinner, christian.heimes, benjamin.peterson, ezio.melotti, Arfrever, alex, r.david.murray, dstufft |
2014-03-22 00:40:50 | pitrou | set | messageid: <1395448850.74.0.505137319265.issue20995@psf.upfronthosting.co.za> |
2014-03-22 00:40:50 | pitrou | link | issue20995 messages |
2014-03-22 00:40:50 | pitrou | create | |
|