Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | | Issue #19500: Add client-side SSL session resumption to the ssl module. | Christian Heimes | 2016-09-10 | 1 | -4/+47 | |
| | | ||||||
* | | Issue #28022: Deprecate ssl-related arguments in favor of SSLContext. | Christian Heimes | 2016-09-10 | 1 | -2/+11 | |
| | | | | | | | | | | | | | | The deprecation include manual creation of SSLSocket and certfile/keyfile (or similar) in ftplib, httplib, imaplib, smtplib, poplib and urllib. ssl.wrap_socket() is not marked as deprecated yet. | |||||
* | | Issue 28043: SSLContext has improved default settings | Christian Heimes | 2016-09-10 | 1 | -1/+8 | |
| | | | | | | | | The options OP_NO_COMPRESSION, OP_CIPHER_SERVER_PREFERENCE, OP_SINGLE_DH_USE, OP_SINGLE_ECDH_USE, OP_NO_SSLv2 (except for PROTOCOL_SSLv2), and OP_NO_SSLv3 (except for PROTOCOL_SSLv3) are set by default. The initial cipher suite list contains only HIGH ciphers, no NULL ciphers and MD5 ciphers (except for PROTOCOL_SSLv2). | |||||
* | | Issue #28025: Convert all ssl module constants to IntEnum and IntFlags. | Christian Heimes | 2016-09-10 | 1 | -0/+51 | |
| | | ||||||
* | | Issues #27850 and #27766: Remove 3DES from ssl default cipher list and add ↵ | Christian Heimes | 2016-09-06 | 1 | -0/+6 | |
|\ \ | |/ | | | | | ChaCha20 Poly1305. | |||||
| * | Issues #27850 and #27766: Remove 3DES from ssl default cipher list and add ↵ | Christian Heimes | 2016-09-06 | 1 | -0/+6 | |
| | | | | | | | | ChaCha20 Poly1305. | |||||
* | | Issue #27866: Add SSLContext.get_ciphers() method to get a list of all ↵ | Christian Heimes | 2016-09-06 | 1 | -0/+56 | |
| | | | | | | | | enabled ciphers. | |||||
* | | Issue #26470: Port ssl and hashlib module to OpenSSL 1.1.0. | Christian Heimes | 2016-09-05 | 1 | -21/+87 | |
|\ \ | |/ | ||||||
| * | Issue #26470: Port ssl and hashlib module to OpenSSL 1.1.0. | Christian Heimes | 2016-09-05 | 1 | -21/+81 | |
|/ | ||||||
* | Issue #22558: Add remaining doc links to source code for Python-coded modules. | Terry Jan Reedy | 2016-06-11 | 1 | -2/+1 | |
| | | | | | Reformat header above separator line (added if missing) to a common format. Patch by Yoni Lavi. | |||||
* | Issue #23921: Standardized documentation whitespace formatting. | Serhiy Storchaka | 2016-05-10 | 1 | -1/+1 | |
| | | | | Original patch by James Edwards. | |||||
* | Issue #26736: Used HTTPS for external links in the documentation if possible. | Serhiy Storchaka | 2016-05-07 | 1 | -7/+7 | |
| | ||||||
* | Issue #23804: Fix SSL recv/read(0) to not return 1024 bytes | Martin Panter | 2016-03-28 | 1 | -1/+1 | |
| | ||||||
* | Closes #25910: fix dead and permanently redirected links in the docs. Thanks ↵ | Georg Brandl | 2016-02-26 | 1 | -13/+13 | |
| | | | | to SilentGhost for the patch. | |||||
* | Closes #26435: fix syntax in directives. Thanks to Jakub Stasiak. | Georg Brandl | 2016-02-25 | 1 | -1/+1 | |
| | ||||||
* | Fixed merging error in 3ebeeed1eb28. | Serhiy Storchaka | 2015-11-06 | 1 | -2/+0 | |
| | | | | Thanks Марк Коренберг. | |||||
* | Merge spelling fixes from 3.4 into 3.5 | Martin Panter | 2015-10-31 | 1 | -1/+1 | |
|\ | ||||||
| * | Fix some spelling errors in documentation and code comments | Martin Panter | 2015-10-31 | 1 | -1/+1 | |
| | | ||||||
* | | Issue #24232: Fix typos. Patch by Ville Skyttä. | Berker Peksag | 2015-05-19 | 1 | -1/+1 | |
|\ \ | |/ | ||||||
| * | Issue #24232: Fix typos. Patch by Ville Skyttä. | Berker Peksag | 2015-05-19 | 1 | -1/+1 | |
| | | ||||||
* | | Fix duplicate doc entry for SSLContext.get_ca_certs() | Antoine Pitrou | 2015-04-13 | 1 | -12/+4 | |
|\ \ | |/ | | | | | (closes #18147) | |||||
| * | Fix duplicate doc entry for SSLContext.get_ca_certs() | Antoine Pitrou | 2015-04-13 | 1 | -12/+4 | |
| | | | | | | | | (closes #18147) | |||||
* | | merge 3.4 | Benjamin Peterson | 2015-04-11 | 1 | -7/+7 | |
|\ \ | |/ | ||||||
| * | use imperative | Benjamin Peterson | 2015-04-11 | 1 | -7/+7 | |
| | | ||||||
* | | Null merge | Serhiy Storchaka | 2015-04-10 | 1 | -0/+2 | |
|\ \ | |/ | ||||||
* | | Issue #23025: Add a mention of os.urandom to RAND_bytes and ↵ | Berker Peksag | 2015-04-10 | 1 | -0/+4 | |
|\ \ | |/ | | | | | | | | | RAND_pseudo_bytes docs. Patch by Alex Gaynor. | |||||
| * | Issue #23025: Add a mention of os.urandom to RAND_bytes and ↵ | Berker Peksag | 2015-04-10 | 1 | -0/+4 | |
| | | | | | | | | | | | | RAND_pseudo_bytes docs. Patch by Alex Gaynor. | |||||
* | | merge 3.4 | Benjamin Peterson | 2015-04-08 | 1 | -7/+7 | |
|\ \ | |/ | ||||||
| * | actually ssl3 is just completely broken | Benjamin Peterson | 2015-04-08 | 1 | -7/+7 | |
| | | ||||||
* | | Issue #23853: Methods of SSL socket don't reset the socket timeout anymore each | Victor Stinner | 2015-04-06 | 1 | -0/+18 | |
| | | | | | | | | | | | | | | | | time bytes are received or sent. The socket timeout is now the maximum total duration of the method. This change fixes a denial of service if the application is regulary interrupted by a signal and the signal handler does not raise an exception. | |||||
* | | Issue #23001: Few functions in modules mmap, ossaudiodev, socket, ssl, and | Serhiy Storchaka | 2015-03-20 | 1 | -0/+3 | |
| | | | | | | | | | | codecs, that accepted only read-only bytes-like object now accept writable bytes-like object too. | |||||
* | | merge 3.4 (#23679) | Benjamin Peterson | 2015-03-16 | 1 | -2/+6 | |
|\ \ | |/ | ||||||
| * | versionchanged for rc4 removal (closes #23679) | Benjamin Peterson | 2015-03-16 | 1 | -2/+6 | |
| | | ||||||
* | | merge 3.4 (#23608) | Benjamin Peterson | 2015-03-08 | 1 | -1/+1 | |
|\ \ | |/ | ||||||
| * | indicate correct version (closes #23608) | Benjamin Peterson | 2015-03-08 | 1 | -1/+1 | |
| | | ||||||
* | | merge 3.4 | Benjamin Peterson | 2015-03-04 | 1 | -3/+11 | |
|\ \ | |/ | ||||||
| * | expose X509_V_FLAG_TRUSTED_FIRST | Benjamin Peterson | 2015-03-04 | 1 | -3/+11 | |
| | | ||||||
* | | Issue #23239: ssl.match_hostname() now supports matching of IP addresses. | Antoine Pitrou | 2015-02-15 | 1 | -4/+7 | |
| | | ||||||
* | | prefer server alpn ordering over the client's | Benjamin Peterson | 2015-01-23 | 1 | -1/+2 | |
| | | ||||||
* | | add support for ALPN (closes #20188) | Benjamin Peterson | 2015-01-23 | 1 | -2/+32 | |
| | | ||||||
* | | expose the client's cipher suites from the handshake (closes #23186) | Benjamin Peterson | 2015-01-07 | 1 | -0/+12 | |
| | | ||||||
* | | Issue #23177: Document that ssl.RAND_egd() is not available with LibreSSL | Victor Stinner | 2015-01-06 | 1 | -0/+2 | |
| | | ||||||
* | | merge 3.4 | Benjamin Peterson | 2014-12-06 | 1 | -2/+5 | |
|\ \ | |/ | ||||||
| * | note that sslv3 may not be available | Benjamin Peterson | 2014-12-06 | 1 | -2/+5 | |
| | | ||||||
* | | Issue #22581: Use more "bytes-like object" throughout the docs and comments. | Serhiy Storchaka | 2014-12-05 | 1 | -1/+1 | |
|\ \ | |/ | ||||||
| * | Issue #22581: Use more "bytes-like object" throughout the docs and comments. | Serhiy Storchaka | 2014-12-05 | 1 | -1/+1 | |
| | | ||||||
* | | Fix #22987: update the compatibility matrix for a SSLv23 client. | Antoine Pitrou | 2014-12-03 | 1 | -4/+3 | |
|\ \ | |/ | ||||||
| * | Fix #22987: update the compatibility matrix for a SSLv23 client. | Antoine Pitrou | 2014-12-03 | 1 | -4/+3 | |
| | | ||||||
| * | correct versionchanged version | Benjamin Peterson | 2014-11-23 | 1 | -1/+1 | |
| | | ||||||
* | | merge 3.4 (#22921) | Benjamin Peterson | 2014-11-23 | 1 | -7/+7 | |
|\ \ | |/ |