summaryrefslogtreecommitdiffstats
path: root/Lib/ssl.py
Commit message (Expand)AuthorAgeFilesLines
* Issue #5639: Add a *server_hostname* argument to `SSLContext.wrap_socket`Antoine Pitrou2010-10-221-3/+12
* Issue #1589: Add ssl.match_hostname(), to help implement server identityAntoine Pitrou2010-10-081-0/+59
* Issue #9853: Fix the signature of SSLSocket.recvfrom() andAntoine Pitrou2010-09-141-4/+6
* Issue #3805: clean up implementation of the _read method in _ssl.c.Antoine Pitrou2010-09-031-3/+3
* Fix issue #9711: raise ValueError is SSLConnection constructor is invoked wit...Giampaolo Rodolà2010-08-301-0/+2
* Fix issue issue9706: provides a better error handling for various SSL operationsGiampaolo Rodolà2010-08-291-2/+6
* Raise ValuError if non-zero flag argument is provided for sendall() method fo...Giampaolo Rodolà2010-08-291-0/+4
* Followup to r83869 and issue #8524: rename socket.forget() to socket.detach()Antoine Pitrou2010-08-091-1/+1
* Issue #8524: Add a forget() method to socket objects, so as to put theAntoine Pitrou2010-08-081-3/+2
* Issue #4870: Add an `options` attribute to SSL contexts, as well asAntoine Pitrou2010-05-211-0/+1
* Issue #8550: Add first class `SSLContext` objects to the ssl module.Antoine Pitrou2010-05-161-22/+49
* Remove unused importAntoine Pitrou2010-04-261-1/+0
* Hopefully fix sporadic Windows issue by avoiding calling getpeername()Antoine Pitrou2010-04-261-12/+15
* Merged revisions 80507 via svnmerge fromAntoine Pitrou2010-04-261-1/+4
* Issue #8524: When creating an SSL socket, the timeout value of theAntoine Pitrou2010-04-241-0/+1
* Merged revisions 80151 via svnmerge fromAntoine Pitrou2010-04-171-5/+9
* Merged revisions 79812 via svnmerge fromAntoine Pitrou2010-04-051-0/+1
* Fix a blunder in r79287. This part is, obviously, poorly tested (if at all).Antoine Pitrou2010-03-221-9/+0
* Merged revisions 79226,79286 via svnmerge fromAntoine Pitrou2010-03-221-10/+4
* Merged revisions 77595 via svnmerge fromEzio Melotti2010-01-181-1/+1
* More codestring -> codebytes.Georg Brandl2009-06-041-1/+1
* fix name usageBenjamin Peterson2008-12-311-1/+1
* #4788 qualify remove a bare exceptBenjamin Peterson2008-12-311-1/+1
* fixes from issue 3162 for SSL moduleBill Janssen2008-09-081-0/+8
* clean up ssl.py; expose unwrap and add test for itBill Janssen2008-08-121-1/+9
* fix bad method names in ssl module (and typo in ssl doc)Bill Janssen2008-06-291-6/+6
* Merged revisions 60990-61002 via svnmerge fromChristian Heimes2008-02-231-1/+1
* update to fix leak in SSL codeBill Janssen2007-12-141-23/+23
* Reverting revision 59394. We'll sort this out later.Guido van Rossum2007-12-061-5/+4
* Fix the leaks in test_ssl. Issue 1469. Patch by Christian Heimes:Guido van Rossum2007-12-061-4/+5
* most recent changes to SSL module to support non-blocking sockets properlyBill Janssen2007-12-051-10/+25
* Disable dup() of SSLSocket. I don't think it can be made to work.Guido van Rossum2007-11-161-0/+4
* This is roughly socket2.diff from issue 1378, with a few changes appliedGuido van Rossum2007-11-161-15/+6
* Fix some minor style nits. (I'll leave adding __all__ and making theGuido van Rossum2007-11-161-46/+38
* get SSL support to work againBill Janssen2007-11-151-294/+167
* Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge fromThomas Wouters2007-09-191-23/+338
* Merged revisions 57620-57771 via svnmerge fromThomas Wouters2007-08-301-125/+110
* Found a different, more direct way to disable ssl support until it's fixed.Guido van Rossum2007-08-291-0/+2
* Merge the trunk changes in. Breaks socket.ssl for now.Thomas Wouters2007-08-281-0/+253