1. 2f33456 fix sslwrap_simple (closes #22523) by Benjamin Peterson · 10 years ago
  2. e98205d Issue #20421: Add a .version() method to SSL sockets exposing the actual protocol version in use. by Alex Gaynor · 10 years ago
  3. 876473e fix load_verify_locations on unicode paths (closes #22244) by Benjamin Peterson · 10 years ago
  4. 7ed3e29 fix error message for invalid curve name by Benjamin Peterson · 10 years ago
  5. cbb144a PyUnicode -> PyString and PyLong -> PyInt by Benjamin Peterson · 10 years ago
  6. daeb925 backport many ssl features from Python 3 (closes #21308) by Benjamin Peterson · 10 years ago
  7. 3b2afbb Issue #20207: Always disable SSLv2 except when PROTOCOL_SSLv2 is explicitly asked for. by Antoine Pitrou · 11 years ago
  8. 41a7d5e Issue #19227 / Issue #18747: Remove pthread_atfork() handler to remove OpenSSL re-seeding by Christian Heimes · 11 years ago
  9. 87c99a0 Properly initialize all fields of a SSL object after allocation. by Antoine Pitrou · 11 years ago
  10. 5eb6e3b Issue #18709: GCC 4.6 complains that 'v' may be used uninitialized in GEN_EMAIL/GEN_URI/GEN_DNS case by Christian Heimes · 11 years ago
  11. ed9884b Issue #18709: GCC 4.6 complains that 'v' may be used uninitialized in GEN_EMAIL/GEN_URI/GEN_DNS case by Christian Heimes · 11 years ago
  12. 8ee5ffd Issue #18747: Fix spelling errors in my commit message and comments, by Christian Heimes · 11 years ago
  13. 82f8828 - Issue #18709: Fix CVE-2013-4238. The SSL module now handles NULL bytes by Barry Warsaw · 11 years ago
  14. 1d0f73d Issue #18747: Use a parent atfork handler instead of a child atfork handler. by Christian Heimes · 11 years ago
  15. 0d604cf Issue #18747: Re-seed OpenSSL's pseudo-random number generator after fork. by Christian Heimes · 11 years ago
  16. 1010781 Issue #18777: The ssl module now uses the new CRYPTO_THREADID API of by Christian Heimes · 11 years ago
  17. b4ec842 Issue 18768: Correct doc string of RAND_edg(). Patch by Vajrasky Kok. by Christian Heimes · 11 years ago
  18. f1bd47a Issue #18768: coding style nitpick. Thanks to Vajrasky Kok by Christian Heimes · 11 years ago
  19. 419e23c #18466: fix more typos. Patch by Févry Thibault. by Ezio Melotti · 11 years ago
  20. 88b174c Issue #18709: Fix CVE-2013-4238. The SSL module now handles NULL bytes by Christian Heimes · 11 years ago
  21. c1a4426 Issue #18135: ssl.SSLSocket.write() now raises an OverflowError if the input by Victor Stinner · 11 years ago
  22. 4807df4 Issue #18135: Fix a possible integer overflow in ssl.SSLSocket.write() by Victor Stinner · 11 years ago
  23. c5bef75 Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. by Antoine Pitrou · 12 years ago
  24. d358e05 Issue #13885: CVE-2011-3389: the _ssl module would always disable the CBC IV attack countermeasure. by Antoine Pitrou · 13 years ago
  25. dd7e071 Issue #13014: Fix a possible reference leak in SSLSocket.getpeercert(). by Antoine Pitrou · 13 years ago
  26. 374b4ea Issue #13885: CVE-2011-3389: the _ssl module would always disable the CBC IV attack countermeasure. by Antoine Pitrou · 13 years ago
  27. aa1c967 Issue #13458: Fix a memory leak in the ssl module when decoding a certificate with a subjectAltName. by Antoine Pitrou · 13 years ago
  28. f06eb46 Issue #13034: When decoding some SSL certificates, the subjectAltName extension could be unreported. by Antoine Pitrou · 13 years ago
  29. fda7b37 Issue #12287: Fix a stack corruption in ossaudiodev module when the FD is by Charles-François Natali · 13 years ago
  30. b1241f9 (Merge 3.1) Issue #12012: ssl.PROTOCOL_SSLv2 becomes optional by Victor Stinner · 13 years ago
  31. a9b1689 Merged revisions 87140 via svnmerge from by Hirokazu Yamamoto · 14 years ago
  32. 8e73403 Merged revisions 85432 via svnmerge from by Benjamin Peterson · 14 years ago
  33. c1ef2fa Merged revisions 83680,83685 via svnmerge from by Mark Dickinson · 14 years ago
  34. 793c71c Merged revisions 83677 via svnmerge from by Mark Dickinson · 14 years ago
  35. b4f0e64 Merged revisions 82210 via svnmerge from by Antoine Pitrou · 14 years ago
  36. 0dddf60 Issue #9075: In the ssl module, remove the setting of a `debug` flag by Antoine Pitrou · 14 years ago
  37. b6e3e3a Merged revisions 81241 via svnmerge from by Antoine Pitrou · 14 years ago
  38. 508a237 Clear the OpenSSL error queue each time an error is signalled. by Antoine Pitrou · 14 years ago
  39. 96125cf Merged revisions 81115 via svnmerge from by Antoine Pitrou · 14 years ago
  40. 2e136ab Improve _ssl.c formatting by Antoine Pitrou · 14 years ago
  41. 7fd622a Merged revisions 80789 via svnmerge from by Antoine Pitrou · 14 years ago
  42. a4c2a5c Untabify Modules/_ssl.c by Antoine Pitrou · 14 years ago
  43. 949476e Remove unneeded variable initialization. by Brett Cannon · 14 years ago
  44. bcc17e7 Merged revisions 80540 via svnmerge from by Antoine Pitrou · 14 years ago
  45. 1dc6b08 Issue #8549: Fix compiling the _ssl extension under AIX. Patch by by Antoine Pitrou · 14 years ago
  46. c689d96 Merged revisions 80451-80452 via svnmerge from by Antoine Pitrou · 15 years ago
  47. 4d3e372 The do_handshake() method of SSL objects now adjusts the blocking mode of by Antoine Pitrou · 15 years ago
  48. 0707216 Merged revisions 80392 via svnmerge from by Antoine Pitrou · 15 years ago
  49. a5c4b55 Issue #8108: Fix the unwrap() method of SSL objects when the socket has by Antoine Pitrou · 15 years ago
  50. 878602a Merged revisions 80314-80315 via svnmerge from by Antoine Pitrou · 15 years ago
  51. c715a9e Issue #8484: Load all ciphers and digest algorithms when initializing by Antoine Pitrou · 15 years ago
  52. 0a6373c Issue #8322: Add a *ciphers* argument to SSL sockets, so as to change the by Antoine Pitrou · 15 years ago
  53. 343314a Revert r79915 (temporary commit to check for buildbots -> the fix was successful) by Antoine Pitrou · 15 years ago
  54. 9c6cd56 Temporarily commit fix to issue #8108, to check for buildbot response by Antoine Pitrou · 15 years ago
  55. 206685b Merged revisions 79910 via svnmerge from by Antoine Pitrou · 15 years ago
  56. 92719c5 SSL_MODE_AUTO_RETRY has been added in OpenSSL 0.9.6. Fix compilation by Antoine Pitrou · 15 years ago
  57. f9de534 Issue #8321: Give access to OpenSSL version numbers from the `ssl` module, by Antoine Pitrou · 15 years ago
  58. cfd6200 Merged revisions 79448 via svnmerge from by Antoine Pitrou · 15 years ago
  59. eee91cd Issue #8222: Enable the SSL_MODE_AUTO_RETRY flag on SSL sockets, so that blocking by Antoine Pitrou · 15 years ago
  60. 3c67d6a Reverting r78597. This is not a critical fix and we're in rc mode. by Barry Warsaw · 15 years ago
  61. 8898b24 Merged revisions 78596 via svnmerge from by Victor Stinner · 15 years ago
  62. 3f75cc5 Issue #2973: Fix gcc warning on the 2nd argument of ASN1_item_d2i() and by Victor Stinner · 15 years ago
  63. 5ba8491 Issue #7133: SSL objects now support the new buffer API. by Antoine Pitrou · 15 years ago
  64. 7937d93 Fix nearly all compilation warnings under Apple gcc-4.0. Tested with OPT="-g by Jeffrey Yasskin · 15 years ago
  65. 8fb67e0 Fix signed/unsigned mismatch. by Raymond Hettinger · 16 years ago
  66. 354cfc1 Fix signed/unsigned mismatch. by Raymond Hettinger · 16 years ago
  67. 934b16d various SSL fixes; issues 1251, 3162, 3212 by Bill Janssen · 16 years ago
  68. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
  69. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  70. 5802bb2 Fix compiler warnings by Neal Norwitz · 17 years ago
  71. e9057ff Initialize variable to prevent warning on some platform/config. by Neal Norwitz · 17 years ago
  72. e93237d #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. by Christian Heimes · 17 years ago
  73. a63f268 Fixed warning in ssl module by Christian Heimes · 17 years ago
  74. 296a59d Add support for asyncore server-side SSL support. This requires by Bill Janssen · 17 years ago
  75. 98d19da More work on SSL support. by Bill Janssen · 17 years ago
  76. ffe576d SSL certificate distinguished names should be represented by tuples by Bill Janssen · 17 years ago
  77. 780b80d > Some of the code sets the error string in this directly before by Guido van Rossum · 17 years ago
  78. dc98811 Fix a few more variables to try to get this to compile with Visual Studio. by Neal Norwitz · 17 years ago
  79. 049da9e Try to get this to build with Visual Studio by moving all the variable by Neal Norwitz · 17 years ago
  80. 4f2c3dd Server-side SSL and certificate validation, by Bill Janssen. by Guido van Rossum · 17 years ago
  81. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
  82. a811c38 Fix various minor errors in passing arguments to PyArg_ParseTuple. by Martin v. Löwis · 18 years ago
  83. 93ab5fa #1494314: Fix a regression with high-numbered sockets in 2.4.3. This by Anthony Baxter · 18 years ago
  84. 38e3b7d Don't mask a no memory error with a less meaningful one as discussed on python-checkins by Neal Norwitz · 18 years ago
  85. c6a989a Fix problems found by Coverity. by Neal Norwitz · 18 years ago
  86. c859b5c Remove unused field by Neal Norwitz · 19 years ago
  87. 43f08a8 Patch #1380952: fix SSL objects timing out on consecutive read()s by Georg Brandl · 19 years ago
  88. 389cea8 Try to improve name based on discussion on python-checkins with Jim Jewett by Neal Norwitz · 19 years ago
  89. f84d1b9 Introduce Py_SOCKET_FD_CAN_BE_GE_FD_SETSIZE. Proposed by Tim Peters. by Martin v. Löwis · 19 years ago
  90. 082b2df Bug #876637, prevent stack corruption when socket descriptor by Neal Norwitz · 19 years ago
  91. 19cbcad Fix indentation (whitespace only). by Neal Norwitz · 19 years ago
  92. 1ac754f Check return result from Py_InitModule*(). This API can fail. by Neal Norwitz · 19 years ago
  93. 5910d81 Add a missing decref -- PyErr_SetObject increfs the 'object'! by Michael W. Hudson · 20 years ago
  94. 27d3dda [Patch #909007] Enable a bunch of safe bug workarounds in OpenSSL, for compatibility with various broken SSL implementations out there. by Andrew M. Kuchling · 20 years ago
  95. 9c3efe3 [Patch #945642] Fix non-blocking SSL sockets, which blocked on reads/writes in Python 2.3. by Andrew M. Kuchling · 20 years ago
  96. 06c3479 Make socket.sslerror a subclass of socket.error . by Brett Cannon · 21 years ago
  97. 405a795 Patch #803998: Correctly check for error in SSL_write. by Martin v. Löwis · 21 years ago
  98. f0dfc7a Fix a bunch of typos in documentation, docstrings and comments. by Walter Dörwald · 21 years ago
  99. a9002f8 Fix SF #754870, SSL crash interpreter when remote side closes during connect by Neal Norwitz · 21 years ago
  100. afec8e3 Patch #751916: Check for signals, fix some refcounting errors. by Martin v. Löwis · 21 years ago