- 0e576f1 Issue #13626: Add support for SSL Diffie-Hellman key exchange, through the by Antoine Pitrou · 13 years ago
- 501da61 Fix ssl module compilation if ECDH support was disabled in the OpenSSL build. by Antoine Pitrou · 13 years ago
- 8abdb8a Issue #13634: Add support for querying and disabling SSL compression. by Antoine Pitrou · 13 years ago
- 923df6f Issue #13627: Add support for SSL Elliptic Curve-based Diffie-Hellman by Antoine Pitrou · 13 years ago
- 6db4944 Issue #13635: Add ssl.OP_CIPHER_SERVER_PREFERENCE, so that SSL servers by Antoine Pitrou · 13 years ago
- bc53032 Issue #13458: Fix a memory leak in the ssl module when decoding a certificate with a subjectAltName. by Antoine Pitrou · 13 years ago
- 116d6b9 Issue #13458: Fix a memory leak in the ssl module when decoding a certificate with a subjectAltName. by Antoine Pitrou · 13 years ago
- 41032a6 Issue #11183: Add finer-grained exceptions to the ssl module, so that by Antoine Pitrou · 13 years ago
- a0e0e23 Add a docstring to SSLError by Antoine Pitrou · 13 years ago
- b7705b7 Use PyExc_OSError directly instead of grabbing it from the socket module API by Antoine Pitrou · 13 years ago
- a02a12c Issue #13034: When decoding some SSL certificates, the subjectAltName extension could be unreported. by Antoine Pitrou · 13 years ago
- d8c347a Issue #13034: When decoding some SSL certificates, the subjectAltName extension could be unreported. by Antoine Pitrou · 13 years ago
- ac7e9e0 Issue #12287: Fix a stack corruption in ossaudiodev module when the FD is by Charles-François Natali · 13 years ago
- aa26b27 Issue #12287: Fix a stack corruption in ossaudiodev module when the FD is by Charles-François Natali · 13 years ago
- 4fd1e6a Issue #12803: SSLContext.load_cert_chain() now accepts a password argument by Antoine Pitrou · 13 years ago
- d649480 Issue #12551: Provide a get_channel_binding() method on SSL sockets so as by Antoine Pitrou · 13 years ago
- 7128f95 Issue #12440: When testing whether some bits in SSLContext.options can be by Antoine Pitrou · 13 years ago
- b9ac25d Issue #12440: When testing whether some bits in SSLContext.options can be by Antoine Pitrou · 13 years ago
- 99c8b16 Issue #12049: Add RAND_bytes() and RAND_pseudo_bytes() functions to the ssl by Victor Stinner · 13 years ago
- 17ca323 (Merge 3.1) Issue #12012: ssl.PROTOCOL_SSLv2 becomes optional by Victor Stinner · 13 years ago
- ee18b6f Issue #12012: ssl.PROTOCOL_SSLv2 becomes optional by Victor Stinner · 13 years ago
- 3de4919 Issue #12012: ssl.PROTOCOL_SSLv2 becomes optional by Victor Stinner · 14 years ago
- a7caec7 Merge fix for issue #11746 by Antoine Pitrou · 14 years ago
- 9c25486 Issue #11746: Fix SSLContext.load_cert_chain() to accept elliptic curve private keys. by Antoine Pitrou · 14 years ago
- b94767f Issue #8914: fix various warnings from the Clang static analyzer v254. by Brett Cannon · 14 years ago
- 80f75e6 Issue #10989: Fix a crash on SSLContext.load_verify_locations(None, True). by Victor Stinner · 14 years ago
- 8e63c68 Merged revisions 87140 via svnmerge from by Hirokazu Yamamoto · 14 years ago
- 524f103 Should call Py_INCREF for Py_None (Modules/_ssl.c: PySSL_cipher) by Hirokazu Yamamoto · 14 years ago
- c4df784 Issue #10272: The ssl module now raises socket.timeout instead of a generic by Antoine Pitrou · 14 years ago
- 664c2d1 Issue #10443: Add the SSLContext.set_default_verify_paths() method. by Antoine Pitrou · 14 years ago
- fb04691 Issue #10022: The dictionary returned by the `getpeercert()` method by Antoine Pitrou · 14 years ago
- d532321 Issue #5639: Add a *server_hostname* argument to `SSLContext.wrap_socket` by Antoine Pitrou · 14 years ago
- 3137095 Merged revisions 85432 via svnmerge from by Benjamin Peterson · 14 years ago
- eb1410f constify to appease compiler warnings by Benjamin Peterson · 14 years ago
- fc113ee Define a "session_id_context" at context creation. This is recommended by Antoine Pitrou · 14 years ago
- bd4dacb Fix compile on NetBSD 5.0 (or anything else using an old 0.9.9-dev OpenSSL). by Gregory P. Smith · 14 years ago
- b0182c8 Issue #10075: Add a session_stats() method to SSLContext objects. by Antoine Pitrou · 14 years ago
- 10c4c23 Merged revisions 84464 via svnmerge from by Antoine Pitrou · 14 years ago
- 24e561a Issue #3805: clean up implementation of the _read method in _ssl.c. by Antoine Pitrou · 14 years ago
- 67e8e56 Try to fix some buildbot failures on test_ssl by Antoine Pitrou · 14 years ago
- e0f9863 Issue #9693 - msg 115273: attempt to fix ssl module failures on certain OpenSSL versions by calling ERR_clear_error() before raising IOError by Giampaolo Rodolà · 14 years ago
- 745ab38 Fix issue issue9706: provides a better error handling for various SSL operations by Giampaolo Rodolà · 14 years ago
- 732cc9b Merged revisions 83677 via svnmerge from by Mark Dickinson · 14 years ago
- ee55df5 Fix memory leak in ssl module. by Mark Dickinson · 14 years ago
- 4b261d2 Merged revisions 82211 via svnmerge from by Antoine Pitrou · 14 years ago
- 6186bfb Merged revisions 82210 via svnmerge from by Antoine Pitrou · 14 years ago
- 94fbaac Merged revisions 82204 via svnmerge from by Antoine Pitrou · 14 years ago
- 8bae4ec Issue #8682: The ssl module now temporary increments the reference count of by Antoine Pitrou · 14 years ago
- b521877 Issue #4870: Add an `options` attribute to SSL contexts, as well as by Antoine Pitrou · 14 years ago
- 321257d Merged revisions 81242 via svnmerge from by Antoine Pitrou · 14 years ago
- 9d74b42 Merged revisions 81241 via svnmerge from by Antoine Pitrou · 14 years ago
- f9faaad Issue #8477: ssl.RAND_egd() supports str with surrogates and bytes for the path by Victor Stinner · 14 years ago
- 3800e1e Issue #8477: _ssl._test_decode_cert() supports str with surrogates and bytes by Victor Stinner · 14 years ago
- 65ec8ae Fix (hopefully) the remaining test_ssl buildbot failures by Antoine Pitrou · 14 years ago
- 152efa2 Issue #8550: Add first class `SSLContext` objects to the ssl module. by Antoine Pitrou · 14 years ago
- a29b181 Merged revisions 81116 via svnmerge from by Antoine Pitrou · 14 years ago
- 525807b Merged revisions 81115 via svnmerge from by Antoine Pitrou · 14 years ago
- 30dc1a7 Merged revisions 80790 via svnmerge from by Antoine Pitrou · 15 years ago
- cbb82eb Merged revisions 80789 via svnmerge from by Antoine Pitrou · 15 years ago
- 79ac78a Merged revisions 80542 via svnmerge from by Antoine Pitrou · 15 years ago
- 06e34a9 Merged revisions 80540 via svnmerge from by Antoine Pitrou · 15 years ago
- ec14618 Merged revisions 80454 via svnmerge from by Antoine Pitrou · 15 years ago
- d3f8ab8 Merged revisions 80451-80452 via svnmerge from by Antoine Pitrou · 15 years ago
- 5a1c4d1 Merged revisions 80394 via svnmerge from by Antoine Pitrou · 15 years ago
- 2c4f98b Merged revisions 80392 via svnmerge from by Antoine Pitrou · 15 years ago
- da6902c Merged revisions 80317 via svnmerge from by Antoine Pitrou · 15 years ago
- fec12ff Merged revisions 80314-80315 via svnmerge from by Antoine Pitrou · 15 years ago
- 2d9cb9c Merged revisions 80151 via svnmerge from by Antoine Pitrou · 15 years ago
- d59ceb5 Merged revisions 79912 via svnmerge from by Antoine Pitrou · 15 years ago
- 0ae7b58 Merged revisions 79910 via svnmerge from by Antoine Pitrou · 15 years ago
- 04f6a32 Merged revisions 79812 via svnmerge from by Antoine Pitrou · 15 years ago
- ed6c893 Merged revisions 79449,79452 via svnmerge from by Antoine Pitrou · 15 years ago
- 5f1c38f Merged revisions 79448 via svnmerge from by Antoine Pitrou · 15 years ago
- 117ff17 Merged revisions 78598 via svnmerge from by Victor Stinner · 15 years ago
- 7124a41 Merged revisions 78596 via svnmerge from by Victor Stinner · 15 years ago
- 7d7aede Merged revisions 75529 via svnmerge from by Antoine Pitrou · 15 years ago
- d76c8da Merged revisions 73623-73624 via svnmerge from by Benjamin Peterson · 15 years ago
- 0289b15 Merged revisions 73004,73439,73496,73509,73529,73564,73576-73577,73595-73596,73605 via svnmerge from by Benjamin Peterson · 15 years ago
- b173f78 add a replacement API for PyCObject, PyCapsule #5630 by Benjamin Peterson · 16 years ago
- 56420b4 #4967 fix buggy read() by Benjamin Peterson · 16 years ago
- e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 16 years ago
- 26dd760 Fix signed/unsigned mismatch. by Raymond Hettinger · 16 years ago
- 40a0f66 clean up ssl.py; expose unwrap and add test for it by Bill Janssen · 16 years ago
- 4cc0f24 Rename PyUnicode_AsString -> _PyUnicode_AsString and by Marc-André Lemburg · 16 years ago
- e43d33a #3247 Get rid of Py_FindMethod; use tp_members instead. by Amaury Forgeot d'Arc · 16 years ago
- 1a21451 Implement PEP 3121: new module initialization and finalization API. by Martin v. Löwis · 16 years ago
- 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
- 9c4756e Renamed PyBytes to PyByteArray by Christian Heimes · 16 years ago
- ba4af49 Merged revisions 61964-61979 via svnmerge from by Christian Heimes · 17 years ago
- 412dc9c Merged revisions 60350-60363 via svnmerge from by Christian Heimes · 17 years ago
- 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
- 0449f63 Merged revisions 59488-59511 via svnmerge from by Christian Heimes · 17 years ago
- 54cc54c update to fix leak in SSL code by Bill Janssen · 17 years ago
- e6650f9 Reverting revision 59394. We'll sort this out later. by Guido van Rossum · 17 years ago
- 03b5c9a Fix the leaks in test_ssl. Issue 1469. Patch by Christian Heimes: by Guido van Rossum · 17 years ago
- 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
- f06628b Make read() and certificate() return bytes instead of bytearray instances. by Guido van Rossum · 17 years ago
- 6e027db get SSL support to work again by Bill Janssen · 17 years ago
- 1b7f891 Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge from by Thomas Wouters · 17 years ago
- 89d996e Merged revisions 57778-58052 via svnmerge from by Thomas Wouters · 17 years ago