summaryrefslogtreecommitdiff
path: root/Modules/_ssl.c
Commit message (Expand)AuthorAgeFilesLines
* avoid a compiler warning about assigning const char * to char *.Gregory P. Smith2014-01-171-1/+1
* Remove conditional: it is useless at this point (OpenSSL headers are not yet ...Antoine Pitrou2014-01-091-2/+0
* Issue #20207: Always disable SSLv2 except when PROTOCOL_SSLv2 is explicitly a...Antoine Pitrou2014-01-091-2/+5
* Issue #20025: ssl.RAND_bytes() and ssl.RAND_pseudo_bytes() now raise aVictor Stinner2013-12-191-0/+5
* Issue #19227 / Issue #18747: Remove pthread_atfork() handler to remove OpenSS...Christian Heimes2013-10-291-67/+0
* Issue #19227: Try to fix deadlocks caused by re-seeding then OpenSSLGeorg Brandl2013-10-271-7/+8
* 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 #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-171-5/+59
* Check return value of PyLong_FromLong(X509_get_version()). It might be NULL ifChristian Heimes2013-07-261-0/+2
* Issue #18135: ssl.SSLSocket.write() now raises an OverflowError if the inputVictor Stinner2013-06-251-2/+7
* Issue #18135: Fix a possible integer overflow in ssl.SSLSocket.write()Victor Stinner2013-06-231-5/+11
* _ssl.c: strip trailing spacesVictor Stinner2013-06-231-5/+5
* SSLContext.load_dh_params() now properly closes the input file.Antoine Pitrou2013-01-121-0/+1
* Issue #15977: Fix memory leak in Modules/_ssl.c when the function _set_npn_pr...Christian Heimes2012-09-201-0/+7
* MERGE: Closes #15793: Stack corruption in ssl.RAND_egd()Jesus Cea2012-09-111-74/+748
|\
| * Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors...Antoine Pitrou2012-08-151-3/+3
| |\
| * | Issue #14837: SSL errors now have `library` and `reason` attributes describin...Antoine Pitrou2012-06-221-63/+199
| * | Issue #14204: The ssl module now has support for the Next Protocol Negotiatio...Antoine Pitrou2012-03-221-0/+115
| * | Fix last remaining build issues of _ssl under old OpenSSLs. Patch by Vinay.Antoine Pitrou2012-02-191-0/+5
| * | Try to really fix compilation failures of the _ssl module under very old Open...Antoine Pitrou2012-02-171-0/+6
| * | Fix compilation when SSL_OP_SINGLE_ECDH_USE isn't definedAntoine Pitrou2012-02-171-0/+2
| * | Issue #13014: Fix a possible reference leak in SSLSocket.getpeercert().Antoine Pitrou2012-02-151-30/+444
| |\ \
| | * \ Issue #13885: CVE-2011-3389: the _ssl module would always disable the CBC IV ...Antoine Pitrou2012-01-271-30/+444
| | |\ \
| | | * | Issue #13626: Add support for SSL Diffie-Hellman key exchange, through theAntoine Pitrou2011-12-221-0/+35
| | | * | Fix ssl module compilation if ECDH support was disabled in the OpenSSL build.Antoine Pitrou2011-12-211-0/+12
| | | * | Issue #13634: Add support for querying and disabling SSL compression.Antoine Pitrou2011-12-201-0/+24
| | | * | Issue #13627: Add support for SSL Elliptic Curve-based Diffie-HellmanAntoine Pitrou2011-12-191-0/+30
| | | * | Issue #13635: Add ssl.OP_CIPHER_SERVER_PREFERENCE, so that SSL serversAntoine Pitrou2011-12-191-0/+2
| | | * | Issue #13458: Fix a memory leak in the ssl module when decoding a certificate...Antoine Pitrou2011-11-231-30/+341
| | | |\ \
| | | | * | Issue #11183: Add finer-grained exceptions to the ssl module, so thatAntoine Pitrou2011-10-271-3/+57
| | | | * | Add a docstring to SSLErrorAntoine Pitrou2011-10-221-3/+8
| | | | * | Use PyExc_OSError directly instead of grabbing it from the socket module APIAntoine Pitrou2011-10-221-1/+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
| | | | |\ \ \
| | | | * | | | Issue #12803: SSLContext.load_cert_chain() now accepts a password argumentAntoine Pitrou2011-08-251-21/+149
| | | | * | | | Issue #12551: Provide a get_channel_binding() method on SSL sockets so asAntoine Pitrou2011-07-211-0/+60
| | | | * | | | Issue #12440: When testing whether some bits in SSLContext.options can beAntoine Pitrou2011-07-081-3/+67
| | | | |\ \ \ \
| | | | | * | | | Issue #12049: Add RAND_bytes() and RAND_pseudo_bytes() functions to the sslVictor Stinner2011-05-241-0/+67
| | | | | * | | | Issue #12012: ssl.PROTOCOL_SSLv2 becomes optionalVictor Stinner2011-05-091-1/+7
| | | | | * | | | Merge fix for issue #11746Antoine Pitrou2011-04-031-1/+1
| | | | | |\ \ \ \
| | | | | * | | | | Issue #8914: fix various warnings from the Clang static analyzer v254.Brett Cannon2011-02-221-3/+0
* | | | | | | | | | Closes #15793: Stack corruption in ssl.RAND_egd()Jesus Cea2012-09-111-1/+1
| |_|_|_|_|_|_|_|/ |/| | | | | | | |