index
:
delta/cpython.git
2.0
2.1
2.2
2.3
2.4
2.5
2.6
2.7
3.0
3.1
3.2
3.3
3.4
3.5
3.6
baserock/2.7.9-mips64
baserock/markdoffman/py2-symlink
baserock/markdoffman/py2-symlink-v2
baserock/morph-2.7
legacy-trunk
master
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Modules
/
_ssl.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Check return value of PyLong_FromLong(X509_get_version()). It might be NULL if
Christian Heimes
2013-07-26
1
-0
/
+2
|
\
|
*
Check return value of PyLong_FromLong(X509_get_version()). It might be NULL if
Christian Heimes
2013-07-26
1
-0
/
+2
*
|
Issue #18203: Replace malloc() with PyMem_Malloc() in _ssl for the password
Victor Stinner
2013-07-07
1
-4
/
+4
*
|
Issue #18203: Replace malloc() with PyMem_Malloc() in Python modules
Victor Stinner
2013-07-07
1
-2
/
+2
*
|
_ssl.c: strip trailing spaces
Victor Stinner
2013-06-25
1
-3
/
+3
*
|
(Merge 3.3) Issue #18135: ssl.SSLSocket.write() now raises an OverflowError if
Victor Stinner
2013-06-25
1
-2
/
+7
|
\
\
|
|
/
|
*
Issue #18135: ssl.SSLSocket.write() now raises an OverflowError if the input
Victor Stinner
2013-06-25
1
-2
/
+7
*
|
(Merge 3.3) Issue #18135: Fix a possible integer overflow in
Victor Stinner
2013-06-23
1
-73
/
+666
|
\
\
|
|
/
|
/
|
|
*
Issue #18147: Add diagnostic functions to ssl.SSLContext().
Christian Heimes
2013-06-17
1
-17
/
+127
|
*
Simplify return value of ssl.get_default_verify_paths
Christian Heimes
2013-06-14
1
-11
/
+3
|
*
fixd refleak
Christian Heimes
2013-06-10
1
-1
/
+9
|
*
Issue #17134: Add ssl.enum_cert_store() as interface to Windows' cert store.
Christian Heimes
2013-06-09
1
-0
/
+132
|
*
get_default_verify_paths doesn't belong inside the ifdef block
Christian Heimes
2013-06-09
1
-1
/
+1
|
*
Issue #18143: Implement ssl.get_default_verify_paths() in order to debug
Christian Heimes
2013-06-09
1
-0
/
+42
|
*
Fix compilation under MSVC: ssl_set_mode() is a macro, and the MSVC preproces...
Antoine Pitrou
2013-05-25
1
-3
/
+4
|
*
Issue #8240: Set the SSL_MODE_ACCEPT_MOVING_WRITE_BUFFER flag on SSL sockets.
Antoine Pitrou
2013-05-25
1
-1
/
+3
|
*
Fix a crash when setting a servername callback on a SSL server socket and the...
Antoine Pitrou
2013-04-11
1
-12
/
+18
|
*
Fix comment about the OpenSSL version in which SNI version was introduced.
Antoine Pitrou
2013-03-30
1
-1
/
+1
|
*
Improve set_servername_callback docstring.
Antoine Pitrou
2013-03-30
1
-3
/
+3
|
*
Fix previous fix (the cause was actually a misplaced #endif, or so it seems)
Antoine Pitrou
2013-03-30
1
-3
/
+1
|
*
Further compiling fixes (issue #17581)
Antoine Pitrou
2013-03-30
1
-1
/
+4
|
*
Issue #17581: try to fix building on old OpenSSL versions
Antoine Pitrou
2013-03-30
1
-7
/
+27
|
*
Issue #16692: The ssl module now supports TLS 1.1 and TLS 1.2. Initial patch...
Antoine Pitrou
2013-03-28
1
-47
/
+77
|
*
Issue #16982: Fix --without-threads build failure.
Stefan Krah
2013-01-17
1
-3
/
+9
|
*
SSLContext.load_dh_params() now properly closes the input file.
Antoine Pitrou
2013-01-12
1
-0
/
+1
|
|
\
|
*
|
Fix returning uninitialized variable (issue #8109).
Antoine Pitrou
2013-01-06
1
-1
/
+1
|
*
|
Issue #8109: The ssl module now has support for server-side SNI, thanks to a ...
Antoine Pitrou
2013-01-05
1
-5
/
+248
*
|
|
Issue #18135: Fix a possible integer overflow in ssl.SSLSocket.write()
Victor Stinner
2013-06-23
1
-5
/
+11
*
|
|
_ssl.c: strip trailing spaces
Victor Stinner
2013-06-23
1
-5
/
+5
|
|
/
|
/
|
*
|
SSLContext.load_dh_params() now properly closes the input file.
Antoine Pitrou
2013-01-12
1
-0
/
+1
|
/
*
Issue #15977: Fix memory leak in Modules/_ssl.c when the function _set_npn_pr...
Christian Heimes
2012-09-20
1
-0
/
+7
*
MERGE: Closes #15793: Stack corruption in ssl.RAND_egd()
Jesus Cea
2012-09-11
1
-74
/
+748
|
\
|
*
Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors...
Antoine Pitrou
2012-08-15
1
-3
/
+3
|
|
\
|
*
|
Issue #14837: SSL errors now have `library` and `reason` attributes describin...
Antoine Pitrou
2012-06-22
1
-63
/
+199
|
*
|
Issue #14204: The ssl module now has support for the Next Protocol Negotiatio...
Antoine Pitrou
2012-03-22
1
-0
/
+115
|
*
|
Fix last remaining build issues of _ssl under old OpenSSLs. Patch by Vinay.
Antoine Pitrou
2012-02-19
1
-0
/
+5
|
*
|
Try to really fix compilation failures of the _ssl module under very old Open...
Antoine Pitrou
2012-02-17
1
-0
/
+6
|
*
|
Fix compilation when SSL_OP_SINGLE_ECDH_USE isn't defined
Antoine Pitrou
2012-02-17
1
-0
/
+2
|
*
|
Issue #13014: Fix a possible reference leak in SSLSocket.getpeercert().
Antoine Pitrou
2012-02-15
1
-30
/
+444
|
|
\
\
|
|
*
\
Issue #13885: CVE-2011-3389: the _ssl module would always disable the CBC IV ...
Antoine Pitrou
2012-01-27
1
-30
/
+444
|
|
|
\
\
|
|
|
*
|
Issue #13626: Add support for SSL Diffie-Hellman key exchange, through the
Antoine Pitrou
2011-12-22
1
-0
/
+35
|
|
|
*
|
Fix ssl module compilation if ECDH support was disabled in the OpenSSL build.
Antoine Pitrou
2011-12-21
1
-0
/
+12
|
|
|
*
|
Issue #13634: Add support for querying and disabling SSL compression.
Antoine Pitrou
2011-12-20
1
-0
/
+24
|
|
|
*
|
Issue #13627: Add support for SSL Elliptic Curve-based Diffie-Hellman
Antoine Pitrou
2011-12-19
1
-0
/
+30
|
|
|
*
|
Issue #13635: Add ssl.OP_CIPHER_SERVER_PREFERENCE, so that SSL servers
Antoine Pitrou
2011-12-19
1
-0
/
+2
|
|
|
*
|
Issue #13458: Fix a memory leak in the ssl module when decoding a certificate...
Antoine Pitrou
2011-11-23
1
-30
/
+341
|
|
|
|
\
\
|
|
|
|
*
|
Issue #11183: Add finer-grained exceptions to the ssl module, so that
Antoine Pitrou
2011-10-27
1
-3
/
+57
|
|
|
|
*
|
Add a docstring to SSLError
Antoine Pitrou
2011-10-22
1
-3
/
+8
|
|
|
|
*
|
Use PyExc_OSError directly instead of grabbing it from the socket module API
Antoine Pitrou
2011-10-22
1
-1
/
+1
|
|
|
|
*
|
Issue #13034: When decoding some SSL certificates, the subjectAltName extensi...
Antoine Pitrou
2011-10-01
1
-1
/
+1
|
|
|
|
|
\
\
[next]