summaryrefslogtreecommitdiff
path: root/Lib/ssl.py
Commit message (Expand)AuthorAgeFilesLines
* [2.7] bpo-33023: Fix NotImplemented to NotImplementedError. (GH-10934). (GH-1...Serhiy Storchaka2018-12-071-2/+2
* [2.7] bpo-29136: Add TLS 1.3 cipher suites and OP_NO_TLSv1_3 (GH-1363) (#3446)Christian Heimes2017-09-071-1/+7
* Issues #27850 and #27766: Remove 3DES from ssl default cipher list and add Ch...Christian Heimes2016-09-061-15/+21
* Issue #26470: Port ssl and hashlib module to OpenSSL 1.1.0.Christian Heimes2016-09-051-6/+10
* Issue #27114: Fix SSLContext._load_windows_store_certs fails with PermissionE...Steve Dower2016-05-261-5/+9
* Issue #23804: Fix SSL recv/read(0) to not return 1024 bytesMartin Panter2016-03-281-2/+2
* Issue #23857: Implement PEP 493Nick Coghlan2016-03-201-4/+21
* Issue #26313: ssl.py _load_windows_store_certs fails if windows cert store is...Steve Dower2016-03-171-1/+2
* use _import_symbols to import VERIFY_* constantsBenjamin Peterson2015-03-041-2/+1
* remove rc4 from the default client ciphers (closes #23481)Benjamin Peterson2015-02-191-4/+2
* pep 466 backport of alpn (#20188)Benjamin Peterson2015-01-231-1/+19
* Issue #21356: Make ssl.RAND_egd() optional to support LibreSSL. TheVictor Stinner2015-01-061-1/+6
* pep 476: verify certificates by default (#22417)Benjamin Peterson2014-11-231-2/+9
* allow hostname to be passed to SSLContext even if OpenSSL doesn't support SNI...Benjamin Peterson2014-11-231-6/+1
* initialize _makefile_refs earlier so things don't blow up when close() is cal...Benjamin Peterson2014-11-231-1/+1
* Backport disabling of SSLv3 in ssl._create_stdlib_context() (issue #22638).Antoine Pitrou2014-10-171-0/+3
* also use openssl envvars to find certs on windows (closes #22449)Benjamin Peterson2014-10-031-2/+1
* fix sslwrap_simple (closes #22523)Benjamin Peterson2014-10-011-4/+4
* Issue #20421: Add a .version() method to SSL sockets exposing the actual prot...Alex Gaynor2014-09-041-0/+9
* backport many ssl features from Python 3 (closes #21308)Benjamin Peterson2014-08-201-145/+643
* Issue #19422: Explicitly disallow non-SOCK_STREAM sockets in the ssl module, ...Antoine Pitrou2013-12-281-0/+5
* Issue #17918: When using SSLSocket.accept(), if the SSL handshake failed on t...Antoine Pitrou2013-05-061-11/+15
* Backport Python 3.2 fix for issue #12065, and add another test for SSLSocket....Antoine Pitrou2012-12-281-9/+11
* Issue #13636: Weak ciphers are now disabled by default in the ssl moduleAntoine Pitrou2012-01-031-1/+10
* (Merge 3.1) Issue #12012: ssl.PROTOCOL_SSLv2 becomes optionalVictor Stinner2011-05-101-11/+13
* Merged revisions 88664 via svnmerge fromAntoine Pitrou2011-02-261-9/+26
* Issue #9729: Fix the signature of SSLSocket.recvfrom() andAntoine Pitrou2010-09-141-8/+10
* Issue #8086: In :func:`ssl.DER_cert_to_PEM_cert()`, fix missing newlineAntoine Pitrou2010-04-271-1/+1
* When calling getpeername() in SSLSocket.__init__, only silence exceptionsAntoine Pitrou2010-04-261-1/+4
* Issue #5103: SSL handshake would ignore the socket timeout and blockAntoine Pitrou2010-04-241-6/+1
* Issue #5238: Calling makefile() on an SSL object would prevent theAntoine Pitrou2010-04-231-1/+3
* Issue #7943: Fix circular reference created when instantiating an SSLAntoine Pitrou2010-04-231-8/+9
* Issue #8322: Add a *ciphers* argument to SSL sockets, so as to change theAntoine Pitrou2010-04-171-5/+9
* Issue #8321: Give access to OpenSSL version numbers from the `ssl` module,Antoine Pitrou2010-04-051-0/+1
* Issue #3890: Fix recv() and recv_into() on non-blocking SSL sockets.Antoine Pitrou2010-03-211-20/+6
* #7730: remove spaces after functions namesEzio Melotti2010-01-181-17/+17
* fix name collision issuesBenjamin Peterson2008-12-311-3/+3
* #4788 qualify some bare except clausesBenjamin Peterson2008-12-311-2/+2
* fix for release blocker 3910, 2.6 regression in socket.ssl methodBill Janssen2008-09-291-2/+13
* incorporate fixes from issue 3162; SSL doc patchBill Janssen2008-09-081-5/+39
* remove duplicate close() from ssl.py; expose unwrap and add test for itBill Janssen2008-08-121-4/+8
* various SSL fixes; issues 1251, 3162, 3212Bill Janssen2008-06-281-256/+105
* Patch #2167 from calvin: Remove unused importsChristian Heimes2008-02-231-1/+1
* Add support for asyncore server-side SSL support. This requiresBill Janssen2007-09-161-25/+311
* More work on SSL support.Bill Janssen2007-09-101-10/+39
* Added docstrings to methods and functions.Bill Janssen2007-08-301-0/+36
* This contains a number of things:Bill Janssen2007-08-291-125/+74
* Bill Janssen wrote:Guido van Rossum2007-08-261-4/+5
* Server-side SSL and certificate validation, by Bill Janssen.Guido van Rossum2007-08-251-0/+252