- 11 Kas, 2012 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Original patch by Jeff McNeil.
-
- 11 Eyl, 2012 1 kayıt (commit)
-
-
Jesus Cea yazdı
-
- 22 Haz, 2012 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Issue #14837: SSL errors now have `library` and `reason` attributes describing precisely what happened and in which OpenSSL submodule. The str() of a SSLError is also enhanced accordingly. NOTE: this commit creates a reference leak. The leak seems tied to the use of PyType_FromSpec() to create the SSLError type. The leak is on the type object when it is instantiated: >>> e = ssl.SSLError() >>> sys.getrefcount(ssl.SSLError) 35 >>> e = ssl.SSLError() >>> sys.getrefcount(ssl.SSLError) 36 >>> e = ssl.SSLError() >>> sys.getrefcount(ssl.SSLError) 37
-
- 04 May, 2012 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
The certificate has changed and the test now needs SNI to pass.
-
- 21 Mar, 2012 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Issue #14204: The ssl module now has support for the Next Protocol Negotiation extension, if available in the underlying OpenSSL library. Patch by Colin Marc.
-
- 19 Şub, 2012 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 28 Ock, 2012 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 27 Ock, 2012 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 03 Ock, 2012 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
(except when SSLv2 is explicitly asked for).
-
- 21 Ara, 2011 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
- 22 Ara, 2011 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
SSLContext.load_dh_params() method and the ssl.OP_SINGLE_DH_USE option.
-
- 21 Ara, 2011 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
(followup to issue #13627)
-
- 20 Ara, 2011 2 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
-
- 19 Ara, 2011 2 kayıt (commit)
-
-
Antoine Pitrou yazdı
key exchange, through the SSLContext.set_ecdh_curve() method and the ssl.OP_SINGLE_ECDH_USE option.
-
Antoine Pitrou yazdı
choose the cipher based on their own preferences, rather than on the client's.
-
- 28 Eki, 2011 1 kayıt (commit)
-
-
Barry Warsaw yazdı
-
- 27 Eki, 2011 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
you don't have to inspect the exception's attributes in the common case.
-
- 01 Eki, 2011 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
Issue #13034: When decoding some SSL certificates, the subjectAltName extension could be unreported.
-
- 27 Agu, 2011 1 kayıt (commit)
-
-
Nick Coghlan yazdı
Fix #12835: prevent use of the unencrypted sendmsg/recvmsg APIs on SSL wrapped sockets (Patch by David Watson)
-
- 25 Agu, 2011 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
to be used if the private key is encrypted. Patch by Adam Simpkins.
-
- 23 Agu, 2011 1 kayıt (commit)
-
-
Nick Coghlan yazdı
Remove the SSLSocket versions of sendmsg/recvmsg due to lack of proper tests and documentation in conjunction with lack of any known use cases (see issue #6560 for details)
-
- 22 Agu, 2011 1 kayıt (commit)
-
-
Nick Coghlan yazdı
Add support for the send/recvmsg API to the socket module. Patch by David Watson and Heiko Wundram. (Closes #6560)
-
- 20 Tem, 2011 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
to get channel binding data for the current SSL session (only the "tls-unique" channel binding is implemented). This allows the implementation of certain authentication mechanisms such as SCRAM-SHA-1-PLUS. Patch by Jacek Konieczny.
-
- 08 Tem, 2011 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
reset, check the version of the OpenSSL headers Python was compiled against, rather than the runtime version of the OpenSSL library.
-
- 25 May, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
there is not enough entropy.
-
- 24 May, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
module.
-
- 18 May, 2011 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
when the socket's timeout expires (it used to return None).
-
- 09 May, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
OpenSSL is now compiled with OPENSSL_NO_SSL2 defined (without the SSLv2 protocol) on Debian: fix the ssl module on Debian Testing and Debian Sid. Optimize also ssl.get_protocol_name(): speed does matter!
-
- 08 May, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
OpenSSL is now compiled with OPENSSL_NO_SSL2 defined (without the SSLv2 protocol) on Debian: fix the ssl module on Debian Testing and Debian Sid. Optimize also ssl.get_protocol_name(): speed does matter!
-
- 06 May, 2011 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
dNSName entry, ssl.match_hostname() should use the subject's commonName. Patch by Nicolas Bareil.
-
- 28 Nis, 2011 2 kayıt (commit)
-
-
Antoine Pitrou yazdı
-
Antoine Pitrou yazdı
by Charles-François Natali.
-
- 27 Şub, 2011 2 kayıt (commit)
-
-
Antoine Pitrou yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r88671 | antoine.pitrou | 2011-02-27 16:44:12 +0100 (dim., 27 févr. 2011) | 3 lines Follow up to r88664: non-blocking connect-ex() can return EWOULDBLOCK under Windows ........
-
Antoine Pitrou yazdı
-
- 26 Şub, 2011 2 kayıt (commit)
-
-
Antoine Pitrou yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r88664 | antoine.pitrou | 2011-02-27 00:24:06 +0100 (dim., 27 févr. 2011) | 4 lines Issue #11326: Add the missing connect_ex() implementation for SSL sockets, and make it work for non-blocking connects. ........
-
Antoine Pitrou yazdı
and make it work for non-blocking connects.
-
- 29 Ock, 2011 1 kayıt (commit)
-
-
Victor Stinner yazdı
Patch reviewed by Antoine Pitrou, okayed by Georg Brandl.
-
- 08 Ock, 2011 2 kayıt (commit)
-
-
Antoine Pitrou yazdı
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r87861 | antoine.pitrou | 2011-01-08 11:23:29 +0100 (sam., 08 janv. 2011) | 3 lines Fix test_ssl after r87849 ........ r87863 | antoine.pitrou | 2011-01-08 11:28:11 +0100 (sam., 08 janv. 2011) | 3 lines Add EHOSTUNREACH ('No route to host') to the errnos trapped by transient_internet(). ........
-
Antoine Pitrou yazdı
-