1. 4c05b47 Issue #19689: Add ssl.create_default_context() factory function. It creates by Christian Heimes · 11 years ago
  2. 72d2850 Issue #19292: Add SSLContext.load_default_certs() to load default root CA by Christian Heimes · 11 years ago
  3. 44109d7 Issue #17134: Finalize interface to Windows' certificate store. Cert and by Christian Heimes · 11 years ago
  4. 2258779 Issue #8813: Add SSLContext.verify_flags to change the verification flags by Christian Heimes · 11 years ago
  5. a6bc95a Issue #19448: Add private API to SSL module to lookup ASN.1 objects by OID, NID, short name and long name. by Christian Heimes · 11 years ago
  6. b89b5df merge with 3.3 by Georg Brandl · 11 years ago
  7. 72c98d3 Issue #17997: Change behavior of ``ssl.match_hostname()`` to follow RFC 6125, by Georg Brandl · 11 years ago
  8. 9a3777e #18705: merge with 3.3. by Ezio Melotti · 11 years ago
  9. 30b9d5d #18705: fix a number of typos. Patch by Févry Thibault. by Ezio Melotti · 11 years ago
  10. 60a26e0 Issue #9177: Calling read() or write() now raises ValueError, not AttributeError, on a closed SSL socket. by Antoine Pitrou · 11 years ago
  11. cd171c8 Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) by Brett Cannon · 11 years ago
  12. 0a14066 Issue #18200: Update the stdlib (except tests) to use ModuleNotFoundError. by Brett Cannon · 11 years ago
  13. 46bebee Issue #17134: Add ssl.enum_cert_store() as interface to Windows' cert store. by Christian Heimes · 11 years ago
  14. 6d7ad13 Issue #18143: Implement ssl.get_default_verify_paths() in order to debug by Christian Heimes · 11 years ago
  15. 636f93c Issue #17980: Fix possible abuse of ssl.match_hostname() for denial of service using certificates with many wildcards (CVE-2013-2099). by Antoine Pitrou · 11 years ago
  16. 31fb419 Issue #17980: Fix possible abuse of ssl.match_hostname() for denial of service using certificates with many wildcards (CVE-2013-2099). by Antoine Pitrou · 11 years ago
  17. 242db72 Issue #13721: SSLSocket.getpeercert() and SSLSocket.do_handshake() now raise an OSError with ENOTCONN, instead of an AttributeError, when the SSLSocket is not connected. by Antoine Pitrou · 11 years ago
  18. 06d0c1e remove uneffective 'while True' clause by Giampaolo Rodola' · 11 years ago
  19. 2463e5f Issue #16692: The ssl module now supports TLS 1.1 and TLS 1.2. Initial patch by Michele Orrù. by Antoine Pitrou · 11 years ago
  20. f86b3c3 merge 3.3 (#16900) by Benjamin Peterson · 12 years ago
  21. 36f7b97 remove __del__ because it's evil and also prevents the ResourceWarning on the socket from happening (closes #16900) by Benjamin Peterson · 12 years ago
  22. 58ddc9d Issue #8109: The ssl module now has support for server-side SNI, thanks to a :meth:`SSLContext.set_servername_callback` method. by Antoine Pitrou · 12 years ago
  23. 0832af6 Issue #16717: get rid of socket.error, replace with OSError by Andrew Svetlov · 12 years ago
  24. 73e9bd4 Issue #16357: fix calling accept() on a SSLSocket created through SSLContext.wrap_socket(). by Antoine Pitrou · 12 years ago
  25. 5c89b4e Issue #16357: fix calling accept() on a SSLSocket created through SSLContext.wrap_socket(). by Antoine Pitrou · 12 years ago
  26. d5d17eb Issue #14204: The ssl module now has support for the Next Protocol Negotiation extension, if available in the underlying OpenSSL library. by Antoine Pitrou · 12 years ago
  27. a9bf2ac Try to really fix compilation failures of the _ssl module under very old OpenSSLs. by Antoine Pitrou · 12 years ago
  28. 8f85f90 Issue #13636: Weak ciphers are now disabled by default in the ssl module by Antoine Pitrou · 13 years ago
  29. 72aeec3 Issue #13636: Weak ciphers are now disabled by default in the ssl module by Antoine Pitrou · 13 years ago
  30. 0e576f1 Issue #13626: Add support for SSL Diffie-Hellman key exchange, through the by Antoine Pitrou · 13 years ago
  31. 501da61 Fix ssl module compilation if ECDH support was disabled in the OpenSSL build. by Antoine Pitrou · 13 years ago
  32. 8abdb8a Issue #13634: Add support for querying and disabling SSL compression. by Antoine Pitrou · 13 years ago
  33. 923df6f Issue #13627: Add support for SSL Elliptic Curve-based Diffie-Hellman by Antoine Pitrou · 13 years ago
  34. 6db4944 Issue #13635: Add ssl.OP_CIPHER_SERVER_PREFERENCE, so that SSL servers by Antoine Pitrou · 13 years ago
  35. 41032a6 Issue #11183: Add finer-grained exceptions to the ssl module, so that by Antoine Pitrou · 13 years ago
  36. 513886a Fix #12835: prevent use of the unencrypted sendmsg/recvmsg APIs on SSL wrapped sockets (Patch by David Watson) by Nick Coghlan · 13 years ago
  37. 5fab03f 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) by Nick Coghlan · 13 years ago
  38. 96fe56a Add support for the send/recvmsg API to the socket module. Patch by David Watson and Heiko Wundram. (Closes #6560) by Nick Coghlan · 13 years ago
  39. d649480 Issue #12551: Provide a get_channel_binding() method on SSL sockets so as by Antoine Pitrou · 13 years ago
  40. 7128f95 Issue #12440: When testing whether some bits in SSLContext.options can be by Antoine Pitrou · 13 years ago
  41. b9ac25d Issue #12440: When testing whether some bits in SSLContext.options can be by Antoine Pitrou · 13 years ago
  42. 99c8b16 Issue #12049: Add RAND_bytes() and RAND_pseudo_bytes() functions to the ssl by Victor Stinner · 13 years ago
  43. 7a616f2 Issue #12065: connect_ex() on an SSL socket now returns the original errno by Antoine Pitrou · 13 years ago
  44. b4410db Issue #12065: connect_ex() on an SSL socket now returns the original errno by Antoine Pitrou · 13 years ago
  45. 17ca323 (Merge 3.1) Issue #12012: ssl.PROTOCOL_SSLv2 becomes optional by Victor Stinner · 13 years ago
  46. ee18b6f Issue #12012: ssl.PROTOCOL_SSLv2 becomes optional by Victor Stinner · 13 years ago
  47. 3de4919 Issue #12012: ssl.PROTOCOL_SSLv2 becomes optional by Victor Stinner · 13 years ago
  48. ff9bfca Issue #12000: When a SSL certificate has a subjectAltName without any by Antoine Pitrou · 13 years ago
  49. 1c86b44 Issue #12000: When a SSL certificate has a subjectAltName without any by Antoine Pitrou · 13 years ago
  50. 15399c3 Issue #11811: ssl.get_server_certificate() is now IPv6-compatible. Patch by Antoine Pitrou · 13 years ago
  51. 86cbfec Merged revisions 88664 via svnmerge from by Antoine Pitrou · 13 years ago
  52. e93bf7a Issue #11326: Add the missing connect_ex() implementation for SSL sockets, by Antoine Pitrou · 13 years ago
  53. d532321 Issue #5639: Add a *server_hostname* argument to `SSLContext.wrap_socket` by Antoine Pitrou · 14 years ago
  54. 59fdd67 Issue #1589: Add ssl.match_hostname(), to help implement server identity by Antoine Pitrou · 14 years ago
  55. 5974cdd Merged revisions 84807 via svnmerge from by Antoine Pitrou · 14 years ago
  56. a468adc Issue #9853: Fix the signature of SSLSocket.recvfrom() and by Antoine Pitrou · 14 years ago
  57. 10c4c23 Merged revisions 84464 via svnmerge from by Antoine Pitrou · 14 years ago
  58. 24e561a Issue #3805: clean up implementation of the _read method in _ssl.c. by Antoine Pitrou · 14 years ago
  59. 8b7da62 Fix issue #9711: raise ValueError is SSLConnection constructor is invoked with keyfile and not certfile. by Giampaolo Rodolà · 14 years ago
  60. 745ab38 Fix issue issue9706: provides a better error handling for various SSL operations by Giampaolo Rodolà · 14 years ago
  61. 374f835 Raise ValuError if non-zero flag argument is provided for sendall() method for conformity with send(), recv() and recv_into() by Giampaolo Rodolà · 14 years ago
  62. 6e451df Followup to r83869 and issue #8524: rename socket.forget() to socket.detach() by Antoine Pitrou · 14 years ago
  63. e43f9d0 Issue #8524: Add a forget() method to socket objects, so as to put the by Antoine Pitrou · 14 years ago
  64. b521877 Issue #4870: Add an `options` attribute to SSL contexts, as well as by Antoine Pitrou · 14 years ago
  65. 152efa2 Issue #8550: Add first class `SSLContext` objects to the ssl module. by Antoine Pitrou · 14 years ago
  66. f07d558 Merged revisions 80517 via svnmerge from by Antoine Pitrou · 14 years ago
  67. 90e6d04 Remove unused import by Antoine Pitrou · 14 years ago
  68. 28f7ab6 Merged revisions 80515 via svnmerge from by Antoine Pitrou · 14 years ago
  69. fa2b938 Hopefully fix sporadic Windows issue by avoiding calling getpeername() by Antoine Pitrou · 14 years ago
  70. 365171d Merged revisions 80509 via svnmerge from by Antoine Pitrou · 14 years ago
  71. de8cf32 Merged revisions 80507 via svnmerge from by Antoine Pitrou · 14 years ago
  72. c2203f9 Merged revisions 80456 via svnmerge from by Antoine Pitrou · 14 years ago
  73. 40f0874 Issue #8524: When creating an SSL socket, the timeout value of the by Antoine Pitrou · 14 years ago
  74. 2d9cb9c Merged revisions 80151 via svnmerge from by Antoine Pitrou · 14 years ago
  75. 04f6a32 Merged revisions 79812 via svnmerge from by Antoine Pitrou · 14 years ago
  76. a06bfd8 Merged revisions 79287,79289 via svnmerge from by Antoine Pitrou · 14 years ago
  77. 37c1f18 Fix a blunder in r79287. This part is, obviously, poorly tested (if at all). by Antoine Pitrou · 14 years ago
  78. 5733c08 Merged revisions 79226,79286 via svnmerge from by Antoine Pitrou · 14 years ago
  79. b84420e Merged revisions 77597 via svnmerge from by Ezio Melotti · 15 years ago
  80. dc55e67 Merged revisions 77595 via svnmerge from by Ezio Melotti · 15 years ago
  81. 706824f More codestring -> codebytes. by Georg Brandl · 15 years ago
  82. c071d3a fix name usage by Benjamin Peterson · 16 years ago
  83. 9c069fd #4788 qualify remove a bare except by Benjamin Peterson · 16 years ago
  84. 58afe4c fixes from issue 3162 for SSL module by Bill Janssen · 16 years ago
  85. 40a0f66 clean up ssl.py; expose unwrap and add test for it by Bill Janssen · 16 years ago
  86. 980f314 fix bad method names in ssl module (and typo in ssl doc) by Bill Janssen · 16 years ago
  87. 05e8be1 Merged revisions 60990-61002 via svnmerge from by Christian Heimes · 16 years ago
  88. 54cc54c update to fix leak in SSL code by Bill Janssen · 17 years ago
  89. e6650f9 Reverting revision 59394. We'll sort this out later. by Guido van Rossum · 17 years ago
  90. 03b5c9a Fix the leaks in test_ssl. Issue 1469. Patch by Christian Heimes: by Guido van Rossum · 17 years ago
  91. 48dc27c most recent changes to SSL module to support non-blocking sockets properly by Bill Janssen · 17 years ago
  92. b7b030e Disable dup() of SSLSocket. I don't think it can be made to work. by Guido van Rossum · 17 years ago
  93. 39eb8fa This is roughly socket2.diff from issue 1378, with a few changes applied by Guido van Rossum · 17 years ago
  94. 5b8b155 Fix some minor style nits. (I'll leave adding __all__ and making the by Guido van Rossum · 17 years ago
  95. 6e027db get SSL support to work again by Bill Janssen · 17 years ago
  96. 1b7f891 Merged revisions 58095-58132,58136-58148,58151-58197 via svnmerge from by Thomas Wouters · 17 years ago
  97. 47b49bf Merged revisions 57620-57771 via svnmerge from by Thomas Wouters · 17 years ago
  98. 245b42e Found a different, more direct way to disable ssl support until it's fixed. by Guido van Rossum · 17 years ago
  99. ed03b41 Merge the trunk changes in. Breaks socket.ssl for now. by Thomas Wouters · 17 years ago