summaryrefslogtreecommitdiffstats
path: root/Modules/_ssl.c
Commit message (Expand)AuthorAgeFilesLines
* 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 #18571: Implementation of the PEP 446: file descriptors and file handlesVictor Stinner2013-08-271-1/+1
* | Issue #18747: Fix spelling errors in my commit message and comments,Christian Heimes2013-08-251-2/+2
|\ \ | |/
| * Issue #18747: Fix spelling errors in my commit message and comments,Christian Heimes2013-08-251-2/+2
* | Fix compiler warning on Windows.Richard Oudkerk2013-08-241-1/+1
* | Issue #18747: Use a parent atfork handler instead of a child atfork handler.Christian Heimes2013-08-221-12/+9
|\ \ | |/
| * 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 #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 #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: 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
|\ \ | |/
| * Issue #18768: coding style nitpick. Thanks to Vajrasky KokChristian Heimes2013-08-171-1/+1
* | #18466: merge with 3.3.Ezio Melotti2013-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-5/+59
|\ \ | |/
| * Issue #18709: Fix CVE-2013-4238. The SSL module now handles NULL bytesChristian Heimes2013-08-161-5/+59
* | Check return value of PyLong_FromLong(X509_get_version()). It might be NULL ifChristian Heimes2013-07-261-0/+2
|\ \ | |/
| * Check return value of PyLong_FromLong(X509_get_version()). It might be NULL ifChristian Heimes2013-07-261-0/+2
* | Issue #18203: Replace malloc() with PyMem_Malloc() in _ssl for the passwordVictor Stinner2013-07-071-4/+4
* | Issue #18203: Replace malloc() with PyMem_Malloc() in Python modulesVictor Stinner2013-07-071-2/+2
* | _ssl.c: strip trailing spacesVictor Stinner2013-06-241-3/+3
* | (Merge 3.3) Issue #18135: ssl.SSLSocket.write() now raises an OverflowError ifVictor Stinner2013-06-241-2/+7
|\ \ | |/
| * Issue #18135: ssl.SSLSocket.write() now raises an OverflowError if the inputVictor Stinner2013-06-241-2/+7
* | (Merge 3.3) Issue #18135: Fix a possible integer overflow inVictor Stinner2013-06-231-10/+16
|\ \ | |/
| * 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
* | Issue #18147: Add diagnostic functions to ssl.SSLContext().Christian Heimes2013-06-171-17/+127
* | Simplify return value of ssl.get_default_verify_pathsChristian Heimes2013-06-141-11/+3
* | fixd refleakChristian Heimes2013-06-101-1/+9
* | Issue #17134: Add ssl.enum_cert_store() as interface to Windows' cert store.Christian Heimes2013-06-091-0/+132
* | get_default_verify_paths doesn't belong inside the ifdef blockChristian Heimes2013-06-091-1/+1
* | Issue #18143: Implement ssl.get_default_verify_paths() in order to debugChristian Heimes2013-06-091-0/+42
* | Fix compilation under MSVC: ssl_set_mode() is a macro, and the MSVC preproces...Antoine Pitrou2013-05-251-3/+4
* | Issue #8240: Set the SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER flag on SSL sockets.Antoine Pitrou2013-05-251-1/+3
* | Fix a crash when setting a servername callback on a SSL server socket and the...Antoine Pitrou2013-04-111-12/+18
* | Fix comment about the OpenSSL version in which SNI version was introduced.Antoine Pitrou2013-03-301-1/+1
* | Improve set_servername_callback docstring.Antoine Pitrou2013-03-301-3/+3
* | Fix previous fix (the cause was actually a misplaced #endif, or so it seems)Antoine Pitrou2013-03-301-3/+1
* | Further compiling fixes (issue #17581)Antoine Pitrou2013-03-301-1/+4
* | Issue #17581: try to fix building on old OpenSSL versionsAntoine Pitrou2013-03-301-7/+27
* | Issue #16692: The ssl module now supports TLS 1.1 and TLS 1.2. Initial patch...Antoine Pitrou2013-03-281-47/+77
* | Issue #16982: Fix --without-threads build failure.Stefan Krah2013-01-171-3/+9
* | SSLContext.load_dh_params() now properly closes the input file.Antoine Pitrou2013-01-121-0/+1
|\ \ | |/
| * SSLContext.load_dh_params() now properly closes the input file.Antoine Pitrou2013-01-121-0/+1
* | Fix returning uninitialized variable (issue #8109).Antoine Pitrou2013-01-061-1/+1
* | Issue #8109: The ssl module now has support for server-side SNI, thanks to a ...Antoine Pitrou2013-01-051-5/+248
|/