summaryrefslogtreecommitdiff
path: root/Modules/_ssl.c
Commit message (Expand)AuthorAgeFilesLines
* (Merge 3.1) Issue #12012: ssl.PROTOCOL_SSLv2 becomes optionalVictor Stinner2011-05-101-1/+7
* Merged revisions 87140 via svnmerge fromHirokazu Yamamoto2010-12-091-2/+4
* Merged revisions 85432 via svnmerge fromBenjamin Peterson2010-10-131-2/+2
* Merged revisions 83677 via svnmerge fromMark Dickinson2010-08-031-0/+1
* Issue #9075: In the ssl module, remove the setting of a `debug` flagAntoine Pitrou2010-06-251-1/+0
* Clear the OpenSSL error queue each time an error is signalled.Antoine Pitrou2010-05-161-0/+3
* Improve _ssl.c formattingAntoine Pitrou2010-05-121-34/+27
* Untabify Modules/_ssl.cAntoine Pitrou2010-05-051-1346/+1346
* Remove unneeded variable initialization.Brett Cannon2010-05-031-3/+0
* Issue #8549: Fix compiling the _ssl extension under AIX. Patch byAntoine Pitrou2010-04-271-1/+1
* The do_handshake() method of SSL objects now adjusts the blocking mode ofAntoine Pitrou2010-04-241-1/+6
* Issue #8108: Fix the unwrap() method of SSL objects when the socket hasAntoine Pitrou2010-04-221-6/+63
* Issue #8484: Load all ciphers and digest algorithms when initializingAntoine Pitrou2010-04-211-1/+2
* Issue #8322: Add a *ciphers* argument to SSL sockets, so as to change theAntoine Pitrou2010-04-171-5/+15
* Revert r79915 (temporary commit to check for buildbots -> the fix was success...Antoine Pitrou2010-04-091-35/+6
* Temporarily commit fix to issue #8108, to check for buildbot responseAntoine Pitrou2010-04-091-6/+35
* SSL_MODE_AUTO_RETRY has been added in OpenSSL 0.9.6. Fix compilationAntoine Pitrou2010-04-091-0/+2
* Issue #8321: Give access to OpenSSL version numbers from the `ssl` module,Antoine Pitrou2010-04-051-1/+29
* Issue #8222: Enable the SSL_MODE_AUTO_RETRY flag on SSL sockets, so that bloc...Antoine Pitrou2010-03-261-2/+1
* Issue #2973: Fix gcc warning on the 2nd argument of ASN1_item_d2i() andVictor Stinner2010-03-021-0/+5
* Issue #7133: SSL objects now support the new buffer API.Antoine Pitrou2009-10-191-11/+16
* Fix nearly all compilation warnings under Apple gcc-4.0. Tested with OPT="-gJeffrey Yasskin2009-05-291-1/+1
* Fix signed/unsigned mismatch.Raymond Hettinger2009-01-261-1/+1
* various SSL fixes; issues 1251, 3162, 3212Bill Janssen2008-06-281-58/+145
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-21/+21
* Renamed PyString to PyBytesChristian Heimes2008-05-261-21/+21
* Fix compiler warningsNeal Norwitz2008-03-271-2/+2
* Initialize variable to prevent warning on some platform/config.Neal Norwitz2008-01-271-2/+2
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...Christian Heimes2007-12-191-3/+3
* Fixed warning in ssl moduleChristian Heimes2007-12-141-1/+1
* Add support for asyncore server-side SSL support. This requiresBill Janssen2007-09-161-49/+4
* More work on SSL support.Bill Janssen2007-09-101-131/+672
* SSL certificate distinguished names should be represented by tuplesBill Janssen2007-09-051-10/+15
* > Some of the code sets the error string in this directly beforeGuido van Rossum2007-08-271-88/+110
* Fix a few more variables to try to get this to compile with Visual Studio.Neal Norwitz2007-08-251-2/+3
* Try to get this to build with Visual Studio by moving all the variableNeal Norwitz2007-08-251-17/+24
* Server-side SSL and certificate validation, by Bill Janssen.Guido van Rossum2007-08-251-91/+386
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-5/+4
* Fix various minor errors in passing arguments toMartin v. Löwis2006-10-191-1/+1
* #1494314: Fix a regression with high-numbered sockets in 2.4.3. ThisAnthony Baxter2006-07-111-1/+28
* Don't mask a no memory error with a less meaningful one as discussed on pytho...Neal Norwitz2006-05-111-3/+1
* Fix problems found by Coverity.Neal Norwitz2006-05-101-3/+3
* Remove unused fieldNeal Norwitz2006-04-171-1/+0
* Patch #1380952: fix SSL objects timing out on consecutive read()sGeorg Brandl2006-03-311-8/+15
* Try to improve name based on discussion on python-checkins with Jim JewettNeal Norwitz2006-02-131-5/+5
* Introduce Py_SOCKET_FD_CAN_BE_GE_FD_SETSIZE.Martin v. Löwis2006-02-111-0/+2
* Bug #876637, prevent stack corruption when socket descriptorNeal Norwitz2006-02-071-0/+14
* Fix indentation (whitespace only).Neal Norwitz2006-02-071-3/+3
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* Add a missing decref -- PyErr_SetObject increfs the 'object'!Michael W. Hudson2004-08-041-0/+1