1. ad246bf Issue #13898: test_ssl no longer prints a spurious stack trace on Ubuntu. by Nadeem Vawda · 11 years ago
  2. 7b39b9b Issue #13898: test_ssl no longer prints a spurious stack trace on Ubuntu. by Nadeem Vawda · 11 years ago
  3. db5012a In test_ssl, threaded tests shouldn't need the "network" resource to be enabled by Antoine Pitrou · 12 years ago
  4. e1ceb50 Issue #16923: Fix ResourceWarnings in test_ssl. by Antoine Pitrou · 12 years ago
  5. 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
  6. 6464b84 Forward port new test for SSLSocket.connect_ex() by Antoine Pitrou · 12 years ago
  7. ddb87ab Forward port new test for SSLSocket.connect_ex() by Antoine Pitrou · 12 years ago
  8. 40f12ab Backport Python 3.2 fix for issue #12065, and add another test for SSLSocket.connect_ex(). by Antoine Pitrou · 12 years ago
  9. 73e9bd4 Issue #16357: fix calling accept() on a SSLSocket created through SSLContext.wrap_socket(). by Antoine Pitrou · 12 years ago
  10. 5c89b4e Issue #16357: fix calling accept() on a SSLSocket created through SSLContext.wrap_socket(). by Antoine Pitrou · 12 years ago
  11. b7a2800 MERGE: Closes #15793: Stack corruption in ssl.RAND_egd() by Jesus Cea · 12 years ago
  12. c8754a1 Closes #15793: Stack corruption in ssl.RAND_egd() by Jesus Cea · 12 years ago
  13. a8a5b39 Closes #15793: Stack corruption in ssl.RAND_egd(). Python 2.7 hasn't any issue about this, but add a test just to be sure by Jesus Cea · 12 years ago
  14. 3b36fb1 Issue #14837: SSL errors now have `library` and `reason` attributes describing precisely what happened and in which OpenSSL submodule. by Antoine Pitrou · 12 years ago
  15. c642f67 Skip test_algorithms (known remote hosts need SNI, which is only available on 3.2+) by Antoine Pitrou · 12 years ago
  16. f340c21 Fix test connecting to sha256.tbs-internet.com. by Antoine Pitrou · 12 years ago
  17. 16f6f83 Fix test connecting to sha256.tbs-internet.com. by Antoine Pitrou · 12 years ago
  18. 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
  19. c135fa4 Fix last remaining build issues of _ssl under old OpenSSLs. Patch by Vinay. by Antoine Pitrou · 12 years ago
  20. ce816a5 Issue #13895: fix test_ssl hanging under Ubuntu by Antoine Pitrou · 13 years ago
  21. eba63c4 Issue #13895: fix test_ssl hanging under Ubuntu by Antoine Pitrou · 13 years ago
  22. 6636887 Fix intermittent test_ssl failure. by Antoine Pitrou · 13 years ago
  23. eced82e Fix intermittent test_ssl failure. by Antoine Pitrou · 13 years ago
  24. 7a55684 Fix intermittent test_ssl failure. by Antoine Pitrou · 13 years ago
  25. d76088d Issue #13636: Weak ciphers are now disabled by default in the ssl module by Antoine Pitrou · 13 years ago
  26. 8f85f90 Issue #13636: Weak ciphers are now disabled by default in the ssl module by Antoine Pitrou · 13 years ago
  27. 65a3f4b Use context managers in test_ssl to simplify test writing. by Antoine Pitrou · 13 years ago
  28. 5b95eb9 Use context managers in test_ssl to simplify test writing. 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. 6b15c90 Use context managers in test_ssl to simplify test writing. by Antoine Pitrou · 13 years ago
  32. 501da61 Fix ssl module compilation if ECDH support was disabled in the OpenSSL build. by Antoine Pitrou · 13 years ago
  33. 8691bff Fix for buggy test by Antoine Pitrou · 13 years ago
  34. 8abdb8a Issue #13634: Add support for querying and disabling SSL compression. by Antoine Pitrou · 13 years ago
  35. 923df6f Issue #13627: Add support for SSL Elliptic Curve-based Diffie-Hellman by Antoine Pitrou · 13 years ago
  36. 6db4944 Issue #13635: Add ssl.OP_CIPHER_SERVER_PREFERENCE, so that SSL servers by Antoine Pitrou · 13 years ago
  37. cf9943d Backout redundant changeset 1de4d92cd6a4 by Antoine Pitrou · 13 years ago
  38. 39aec01 test_protocol_sslv2(): Skip this test if ssl.PROTOCOL_SSLv2 is not by Barry Warsaw · 13 years ago
  39. 6361ea2 Remove unstable SSL tests in the absence of ssl.OP_NO_{SSLv2,SSLv3,TLSv1} by Antoine Pitrou · 13 years ago
  40. be83698 - Issue #13218: Fix test_ssl failures on Debian/Ubuntu. by Barry Warsaw · 13 years ago
  41. c21a81b - Issue #13218: Fix test_ssl failures on Debian/Ubuntu. by Barry Warsaw · 13 years ago
  42. 46ae0ef - Issue #13218: Fix test_ssl failures on Debian/Ubuntu. by Barry Warsaw · 13 years ago
  43. 41032a6 Issue #11183: Add finer-grained exceptions to the ssl module, so that by Antoine Pitrou · 13 years ago
  44. f06eb46 Issue #13034: When decoding some SSL certificates, the subjectAltName extension could be unreported. by Antoine Pitrou · 13 years ago
  45. a02a12c Issue #13034: When decoding some SSL certificates, the subjectAltName extension could be unreported. by Antoine Pitrou · 13 years ago
  46. d8c347a Issue #13034: When decoding some SSL certificates, the subjectAltName extension could be unreported. by Antoine Pitrou · 13 years ago
  47. 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
  48. 4fd1e6a Issue #12803: SSLContext.load_cert_chain() now accepts a password argument by Antoine Pitrou · 13 years ago
  49. 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
  50. 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
  51. d649480 Issue #12551: Provide a get_channel_binding() method on SSL sockets so as by Antoine Pitrou · 13 years ago
  52. 7128f95 Issue #12440: When testing whether some bits in SSLContext.options can be by Antoine Pitrou · 13 years ago
  53. b9ac25d Issue #12440: When testing whether some bits in SSLContext.options can be by Antoine Pitrou · 13 years ago
  54. 2e2baa9 Issue #12049: test_ssl now checks also that RAND_bytes() raises an error if by Victor Stinner · 13 years ago
  55. 99c8b16 Issue #12049: Add RAND_bytes() and RAND_pseudo_bytes() functions to the ssl by Victor Stinner · 13 years ago
  56. 2e7f39e Issue #12012: test_ssl uses test_support.import_module() by Victor Stinner · 13 years ago
  57. 7a616f2 Issue #12065: connect_ex() on an SSL socket now returns the original errno by Antoine Pitrou · 13 years ago
  58. b4410db Issue #12065: connect_ex() on an SSL socket now returns the original errno by Antoine Pitrou · 13 years ago
  59. b1241f9 (Merge 3.1) Issue #12012: ssl.PROTOCOL_SSLv2 becomes optional by Victor Stinner · 13 years ago
  60. 17ca323 (Merge 3.1) Issue #12012: ssl.PROTOCOL_SSLv2 becomes optional by Victor Stinner · 13 years ago
  61. ee18b6f Issue #12012: ssl.PROTOCOL_SSLv2 becomes optional by Victor Stinner · 13 years ago
  62. 3de4919 Issue #12012: ssl.PROTOCOL_SSLv2 becomes optional by Victor Stinner · 13 years ago
  63. ff9bfca Issue #12000: When a SSL certificate has a subjectAltName without any by Antoine Pitrou · 13 years ago
  64. 1c86b44 Issue #12000: When a SSL certificate has a subjectAltName without any by Antoine Pitrou · 13 years ago
  65. 5aefa66 Fix whitespace by Antoine Pitrou · 13 years ago
  66. 15399c3 Issue #11811: ssl.get_server_certificate() is now IPv6-compatible. Patch by Antoine Pitrou · 13 years ago
  67. 8ef3907 Merged revisions 88671 via svnmerge from by Antoine Pitrou · 13 years ago
  68. d1c9845 Merged revisions 88671 via svnmerge from by Antoine Pitrou · 13 years ago
  69. 8a14a0c Follow up to r88664: non-blocking connect-ex() can return EWOULDBLOCK under Windows by Antoine Pitrou · 13 years ago
  70. d3f6ea1 Merged revisions 88664 via svnmerge from by Antoine Pitrou · 13 years ago
  71. 86cbfec Merged revisions 88664 via svnmerge from by Antoine Pitrou · 13 years ago
  72. e93bf7a Issue #11326: Add the missing connect_ex() implementation for SSL sockets, by Antoine Pitrou · 13 years ago
  73. 80f75e6 Issue #10989: Fix a crash on SSLContext.load_verify_locations(None, True). by Victor Stinner · 14 years ago
  74. d43245a Merged revisions 87861,87863 via svnmerge from by Antoine Pitrou · 14 years ago
  75. 50778ab Merged revisions 87861,87863 via svnmerge from by Antoine Pitrou · 14 years ago
  76. 160fd93 Fix test_ssl after r87849 by Antoine Pitrou · 14 years ago
  77. f332abb test_ssl: test SHA256 using sha256.tbs-internet.com instead of sha2.hboeck.de by Victor Stinner · 14 years ago
  78. c4df784 Issue #10272: The ssl module now raises socket.timeout instead of a generic by Antoine Pitrou · 14 years ago
  79. ed3a7d2 #10273: Rename assertRegexpMatches and assertRaisesRegexp to assertRegex and assertRaisesRegex. by Ezio Melotti · 14 years ago
  80. f55aa80 Merged revisions 85820,85823,85825,85840,85843-85845,85849-85851,85855,85867,85875,85907-85908,85911,85914 via svnmerge from by Georg Brandl · 14 years ago
  81. 664c2d1 Issue #10443: Add the SSLContext.set_default_verify_paths() method. by Antoine Pitrou · 14 years ago
  82. fb04691 Issue #10022: The dictionary returned by the `getpeercert()` method by Antoine Pitrou · 14 years ago
  83. 942d554 Don't fail in test_ssl when svn.python.org is unavailable by Antoine Pitrou · 14 years ago
  84. d2eca37 Clean up socket closing in test_ssl and test.ssl_servers by Antoine Pitrou · 14 years ago
  85. b75b639 Remove usage of exception indexing. by Georg Brandl · 14 years ago
  86. eb585ad Fix test_ssl on Ubuntu buildbot with patched OpenSSL by Antoine Pitrou · 14 years ago
  87. d532321 Issue #5639: Add a *server_hostname* argument to `SSLContext.wrap_socket` by Antoine Pitrou · 14 years ago
  88. 05d936d Let test_ssl fail gracefully if ssl support is not available by Antoine Pitrou · 14 years ago
  89. 803e6d6 Issue #9003: http.client.HTTPSConnection, urllib.request.HTTPSHandler and by Antoine Pitrou · 14 years ago
  90. b0182c8 Issue #10075: Add a session_stats() method to SSLContext objects. by Antoine Pitrou · 14 years ago
  91. 8156409 Issue #1051: Add a script (Lib/test/make_ssl_certs.py) to generate the by Antoine Pitrou · 14 years ago
  92. 59fdd67 Issue #1589: Add ssl.match_hostname(), to help implement server identity by Antoine Pitrou · 14 years ago
  93. 977c707 Fix issue 6706: adds new handle_accepted() method to asyncore.dispatcher by Giampaolo Rodolà · 14 years ago
  94. 5974cdd Merged revisions 84807 via svnmerge from by Antoine Pitrou · 14 years ago
  95. a468adc Issue #9853: Fix the signature of SSLSocket.recvfrom() and by Antoine Pitrou · 14 years ago
  96. f7f390a Issue #9729: Fix the signature of SSLSocket.recvfrom() and by Antoine Pitrou · 14 years ago
  97. de30f70 Some tests didn't get executed (because of the merge in r83728) by Antoine Pitrou · 14 years ago
  98. 4e406d8 Merged revisions 84650 via svnmerge from by Antoine Pitrou · 14 years ago
  99. 78d8946 Merged revisions 84650 via svnmerge from by Antoine Pitrou · 14 years ago
  100. 350c722 Use transient_internet() where appropriate in test_ssl by Antoine Pitrou · 14 years ago