summaryrefslogtreecommitdiffstats
path: root/Modules/_ssl.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #19227 / Issue #18747: Remove pthread_atfork() handler to remove OpenSS...Christian Heimes2013-10-291-65/+0
* Properly initialize all fields of a SSL object after allocation.Antoine Pitrou2013-09-291-0/+1
* Issue #18709: GCC 4.6 complains that 'v' may be used uninitialized in GEN_EMA...Christian Heimes2013-09-051-1/+1
|\
| * Issue #18709: GCC 4.6 complains that 'v' may be used uninitialized in GEN_EMA...Christian Heimes2013-09-051-1/+1
| * - Issue #18709: Fix CVE-2013-4238. The SSL module now handles NULL bytesBarry Warsaw2013-08-231-3/+61
* | Issue #18747: Fix spelling errors in my commit message and comments,Christian Heimes2013-08-251-2/+2
* | Issue #18747: Use a parent atfork handler instead of a child atfork handler.Christian Heimes2013-08-221-12/+9
* | Issue #18747: Re-seed OpenSSL's pseudo-random number generator after fork.Christian Heimes2013-08-211-0/+72
* | Issue #18777: The ssl module now uses the new CRYPTO_THREADID API ofChristian Heimes2013-08-191-1/+17
* | Issue 18768: Correct doc string of RAND_edg(). Patch by Vajrasky Kok.Christian Heimes2013-08-171-1/+1
* | Issue #18768: coding style nitpick. Thanks to Vajrasky KokChristian Heimes2013-08-171-1/+1
* | #18466: fix more typos. Patch by Févry Thibault.Ezio Melotti2013-08-171-1/+1
* | Issue #18709: Fix CVE-2013-4238. The SSL module now handles NULL bytesChristian Heimes2013-08-161-6/+60
* | Issue #18135: ssl.SSLSocket.write() now raises an OverflowError if the inputVictor Stinner2013-06-241-6/+7
* | Issue #18135: Fix a possible integer overflow in ssl.SSLSocket.write()Victor Stinner2013-06-231-1/+6
* | Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors...Antoine Pitrou2012-08-151-1/+5
* | Issue #13014: Fix a possible reference leak in SSLSocket.getpeercert().Antoine Pitrou2012-02-151-9/+14
* | Issue #13885: CVE-2011-3389: the _ssl module would always disable the CBC IV ...Antoine Pitrou2012-01-271-1/+2
|\ \ | |/
| * Issue #13885: CVE-2011-3389: the _ssl module would always disable the CBC IV ...Antoine Pitrou2012-01-271-1/+2
| * Merged revisions 83680,83685 via svnmerge fromMark Dickinson2010-08-031-0/+1
| * Merged revisions 82210 via svnmerge fromAntoine Pitrou2010-06-251-1/+0
| * Merged revisions 81241 via svnmerge fromAntoine Pitrou2010-05-161-0/+3
| * Merged revisions 81115 via svnmerge fromAntoine Pitrou2010-05-121-34/+27
| * Merged revisions 80789 via svnmerge fromAntoine Pitrou2010-05-051-1307/+1307
| * Merged revisions 80540 via svnmerge fromAntoine Pitrou2010-04-271-1/+1
| * Merged revisions 80451-80452 via svnmerge fromAntoine Pitrou2010-04-241-1/+6
| * Merged revisions 80392 via svnmerge fromAntoine Pitrou2010-04-231-6/+63
| * Merged revisions 80314-80315 via svnmerge fromAntoine Pitrou2010-04-211-1/+2
| * Merged revisions 79910 via svnmerge fromAntoine Pitrou2010-04-091-0/+2
| * Merged revisions 79448 via svnmerge fromAntoine Pitrou2010-03-261-2/+1
| * Reverting r78597. This is not a critical fix and we're in rc mode.Barry Warsaw2010-03-031-5/+0
| * Merged revisions 78596 via svnmerge fromVictor Stinner2010-03-021-0/+5
| * Fix signed/unsigned mismatch.Raymond Hettinger2009-01-261-1/+1
* | Issue #13458: Fix a memory leak in the ssl module when decoding a certificate...Antoine Pitrou2011-11-231-0/+1
* | Issue #13034: When decoding some SSL certificates, the subjectAltName extensi...Antoine Pitrou2011-10-011-1/+1
* | Issue #12287: Fix a stack corruption in ossaudiodev module when the FD isCharles-François Natali2011-08-281-3/+1
* | (Merge 3.1) Issue #12012: ssl.PROTOCOL_SSLv2 becomes optionalVictor Stinner2011-05-091-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