summaryrefslogtreecommitdiffstats
path: root/Modules/_ssl.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #19448: report name / NID in exception message of ASN1ObjectChristian Heimes2013-11-221-3/+3
* Issue #18147: Add missing documentation for SSLContext.get_ca_certs().Christian Heimes2013-11-221-4/+6
* Issue #17134: Finalize interface to Windows' certificate store. Cert andChristian Heimes2013-11-221-95/+219
* downcast len to int. The code has already checked that len < INT_MAXChristian Heimes2013-11-211-1/+1
* lst might be NULL hereChristian Heimes2013-11-211-1/+1
* Issue #8813: Add SSLContext.verify_flags to change the verification flagsChristian Heimes2013-11-211-0/+49
* Issue #19682: Fix compatibility issue with old version of OpenSSL thatChristian Heimes2013-11-211-0/+6
* Issue #18379: SSLSocket.getpeercert() returns CA issuer AIA fields, OCSPChristian Heimes2013-11-211-1/+151
* Issue #18138: Implement cadata argument of SSLContext.load_verify_location()Christian Heimes2013-11-211-27/+167
* Safely downcast SOCKET_T to int in _ssl moduleChristian Heimes2013-11-181-3/+5
* Issue #19448: Add private API to SSL module to lookup ASN.1 objects by OID, N...Christian Heimes2013-11-171-0/+91
* Issue #19437: Fix newPySSLSocket(), handle PyWeakref_NewRef() failureVictor Stinner2013-10-311-0/+4
* Issue #19437: Fix fill_and_set_sslerror() of _ssl, handle Py_BuildValue()Victor Stinner2013-10-311-1/+5
* Issue #19227 / Issue #18747: Remove pthread_atfork() handler to remove OpenSS...Christian Heimes2013-10-291-67/+0
|\
| * Issue #19227 / Issue #18747: Remove pthread_atfork() handler to remove OpenSS...Christian Heimes2013-10-291-67/+0
* | #19227: merge with 3.3Georg Brandl2013-10-271-7/+8
|\ \ | |/
| * 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
|\ \ | |/
| * Properly initialize all fields of a SSL object after allocation.Antoine Pitrou2013-09-291-0/+1
* | Issue #19095: SSLSocket.getpeercert() now raises ValueError when the SSL hand...Antoine Pitrou2013-09-291-1/+9
* | 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