1. 24e837f issue23673 by Ethan Furman · 9 years ago
  2. 3e2500d merge 3.4 by Benjamin Peterson · 9 years ago
  3. 7bcf9a5 use _import_symbols to import VERIFY_* constants by Benjamin Peterson · 9 years ago
  4. 869311d merge 3.4 (#23481) by Benjamin Peterson · 9 years ago
  5. 500af33 remove rc4 from the default client ciphers (closes #23481) by Benjamin Peterson · 9 years ago
  6. c481bfb Issue #23239: ssl.match_hostname() now supports matching of IP addresses. by Antoine Pitrou · 9 years ago
  7. cca2732 add support for ALPN (closes #20188) by Benjamin Peterson · 9 years ago
  8. c114e7d remove extra definite article by Benjamin Peterson · 9 years ago
  9. 5318c7a explain None can be returned by Benjamin Peterson · 9 years ago
  10. 4cb1781 expose the client's cipher suites from the handshake (closes #23186) by Benjamin Peterson · 9 years ago
  11. fcfed19 Issue #21356: Make ssl.RAND_egd() optional to support LibreSSL. The by Victor Stinner · 9 years ago
  12. 9d01717 Issue #20896, #22935: The ssl.get_server_certificate() function now uses the by Victor Stinner · 9 years ago
  13. 0041142 Issue #22935: Fix ssl module when SSLv3 protocol is not supported by Victor Stinner · 10 years ago
  14. 7243b57 don't require OpenSSL SNI to pass hostname to ssl functions (#22921) by Benjamin Peterson · 10 years ago
  15. beeb512 Issue #21356: Make ssl.RAND_egd() optional to support LibreSSL. The by Victor Stinner · 10 years ago
  16. f9284ae merge 3.4 (#22921) by Benjamin Peterson · 10 years ago
  17. 1cca273 merge 3.4 (#22417) by Benjamin Peterson · 10 years ago
  18. 4ffb075 PEP 476: enable HTTPS certificate verification by default (#22417) by Benjamin Peterson · 10 years ago
  19. 1ed2e69 Issue #22186: Fix typos in Lib/. by Berker Peksag · 10 years ago
  20. f23530f Issue #22186: Fix typos in Lib/. by Berker Peksag · 10 years ago
  21. a21de3d Issue #22638: SSLv3 is now disabled throughout the standard library. by Antoine Pitrou · 10 years ago
  22. e4eda4d Issue #22638: SSLv3 is now disabled throughout the standard library. by Antoine Pitrou · 10 years ago
  23. 3cb9379 Remove unused "block" argument in SSLObject.do_handshake() (issue #21965) by Antoine Pitrou · 10 years ago
  24. b1fdf47 Issue #21965: Add support for in-memory SSL to the ssl module. by Antoine Pitrou · 10 years ago
  25. 8b9cfa1 merge 3.4 (#22449) by Benjamin Peterson · 10 years ago
  26. 5915b0f also use openssl envvars to find certs on windows (closes #22449) by Benjamin Peterson · 10 years ago
  27. 47e4042 Issue #20421: Add a .version() method to SSL sockets exposing the actual protocol version in use. by Antoine Pitrou · 10 years ago
  28. 915d141 fix issue #17552: add socket.sendfile() method allowing to send a file over a socket by using high-performance os.sendfile() on UNIX. Patch by Giampaolo Rodola'· by Giampaolo Rodola' · 10 years ago
  29. b4bebda Issue #20951: SSLSocket.send() now raises either SSLWantReadError or SSLWantWriteError on a non-blocking socket if the operation would block. Previously, it would return 0. by Antoine Pitrou · 10 years ago
  30. c695c95 Issue #19940: ssl.cert_time_to_seconds() now interprets the given time string in the UTC timezone (as specified in RFC 5280), not the local timezone. by Antoine Pitrou · 10 years ago
  31. 172f025 Issue #21068: The ssl.PROTOCOL* constants are now enum members. by Antoine Pitrou · 10 years ago
  32. 94a5b66 Issue #20896: ssl.get_server_certificate() now uses PROTOCOL_SSLv23, not PROTOCOL_SSLv3, for maximum compatibility. by Antoine Pitrou · 10 years ago
  33. 6a2ba94 Issue #21013: Enhance ssl.create_default_context() for server side contexts by Donald Stufft · 10 years ago
  34. 79ccaa2 Issue #20995: Enhance default ciphers used by the ssl module by Donald Stufft · 10 years ago
  35. 7fa767e Issue #20976: pyflakes: Remove unused imports by Victor Stinner · 10 years ago
  36. e6d2f15 Issue #19422: Explicitly disallow non-SOCK_STREAM sockets in the ssl module, rather than silently let them emit clear text data. by Antoine Pitrou · 11 years ago
  37. 3e86ba4 Issue #19422: Explicitly disallow non-SOCK_STREAM sockets in the ssl module, rather than silently let them emit clear text data. by Antoine Pitrou · 11 years ago
  38. 1da3ba8 Issue #19509: Don't close the socket in do_handshake() when hostname verification fails. by Christian Heimes · 11 years ago
  39. a02c69a add check_hostname arg to ssl._create_stdlib_context() by Christian Heimes · 11 years ago
  40. 1aa9a75 Issue #19509: Add SSLContext.check_hostname to match the peer's certificate by Christian Heimes · 11 years ago
  41. dec813f ssl.create_default_context() sets OP_NO_COMPRESSION to prevent CRIME by Christian Heimes · 11 years ago
  42. 67986f9 Issue #19735: Implement private function ssl._create_stdlib_context() to by Christian Heimes · 11 years ago
  43. 4c05b47 Issue #19689: Add ssl.create_default_context() factory function. It creates by Christian Heimes · 11 years ago
  44. 72d2850 Issue #19292: Add SSLContext.load_default_certs() to load default root CA by Christian Heimes · 11 years ago
  45. 44109d7 Issue #17134: Finalize interface to Windows' certificate store. Cert and by Christian Heimes · 11 years ago
  46. 2258779 Issue #8813: Add SSLContext.verify_flags to change the verification flags by Christian Heimes · 11 years ago
  47. 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
  48. 72c98d3 Issue #17997: Change behavior of ``ssl.match_hostname()`` to follow RFC 6125, by Georg Brandl · 11 years ago
  49. b89b5df merge with 3.3 by Georg Brandl · 11 years ago
  50. 9a3777e #18705: merge with 3.3. by Ezio Melotti · 11 years ago
  51. 30b9d5d #18705: fix a number of typos. Patch by Févry Thibault. by Ezio Melotti · 11 years ago
  52. 60a26e0 Issue #9177: Calling read() or write() now raises ValueError, not AttributeError, on a closed SSL socket. by Antoine Pitrou · 11 years ago
  53. cd171c8 Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) by Brett Cannon · 11 years ago
  54. 0a14066 Issue #18200: Update the stdlib (except tests) to use ModuleNotFoundError. by Brett Cannon · 11 years ago
  55. 46bebee Issue #17134: Add ssl.enum_cert_store() as interface to Windows' cert store. by Christian Heimes · 11 years ago
  56. 6d7ad13 Issue #18143: Implement ssl.get_default_verify_paths() in order to debug by Christian Heimes · 11 years ago
  57. 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
  58. 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
  59. 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
  60. 06d0c1e remove uneffective 'while True' clause by Giampaolo Rodola' · 11 years ago
  61. 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
  62. f86b3c3 merge 3.3 (#16900) by Benjamin Peterson · 11 years ago
  63. 36f7b97 remove __del__ because it's evil and also prevents the ResourceWarning on the socket from happening (closes #16900) by Benjamin Peterson · 11 years ago
  64. 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 · 11 years ago
  65. 0832af6 Issue #16717: get rid of socket.error, replace with OSError by Andrew Svetlov · 12 years ago
  66. 73e9bd4 Issue #16357: fix calling accept() on a SSLSocket created through SSLContext.wrap_socket(). by Antoine Pitrou · 12 years ago
  67. 5c89b4e Issue #16357: fix calling accept() on a SSLSocket created through SSLContext.wrap_socket(). by Antoine Pitrou · 12 years ago
  68. 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
  69. a9bf2ac Try to really fix compilation failures of the _ssl module under very old OpenSSLs. by Antoine Pitrou · 12 years ago
  70. 8f85f90 Issue #13636: Weak ciphers are now disabled by default in the ssl module by Antoine Pitrou · 13 years ago
  71. 72aeec3 Issue #13636: Weak ciphers are now disabled by default in the ssl module by Antoine Pitrou · 13 years ago
  72. 0e576f1 Issue #13626: Add support for SSL Diffie-Hellman key exchange, through the by Antoine Pitrou · 13 years ago
  73. 501da61 Fix ssl module compilation if ECDH support was disabled in the OpenSSL build. by Antoine Pitrou · 13 years ago
  74. 8abdb8a Issue #13634: Add support for querying and disabling SSL compression. by Antoine Pitrou · 13 years ago
  75. 923df6f Issue #13627: Add support for SSL Elliptic Curve-based Diffie-Hellman by Antoine Pitrou · 13 years ago
  76. 6db4944 Issue #13635: Add ssl.OP_CIPHER_SERVER_PREFERENCE, so that SSL servers by Antoine Pitrou · 13 years ago
  77. 41032a6 Issue #11183: Add finer-grained exceptions to the ssl module, so that by Antoine Pitrou · 13 years ago
  78. 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
  79. 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
  80. 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
  81. d649480 Issue #12551: Provide a get_channel_binding() method on SSL sockets so as by Antoine Pitrou · 13 years ago
  82. 7128f95 Issue #12440: When testing whether some bits in SSLContext.options can be by Antoine Pitrou · 13 years ago
  83. b9ac25d Issue #12440: When testing whether some bits in SSLContext.options can be by Antoine Pitrou · 13 years ago
  84. 99c8b16 Issue #12049: Add RAND_bytes() and RAND_pseudo_bytes() functions to the ssl by Victor Stinner · 13 years ago
  85. 7a616f2 Issue #12065: connect_ex() on an SSL socket now returns the original errno by Antoine Pitrou · 13 years ago
  86. b4410db Issue #12065: connect_ex() on an SSL socket now returns the original errno by Antoine Pitrou · 13 years ago
  87. 17ca323 (Merge 3.1) Issue #12012: ssl.PROTOCOL_SSLv2 becomes optional by Victor Stinner · 13 years ago
  88. ee18b6f Issue #12012: ssl.PROTOCOL_SSLv2 becomes optional by Victor Stinner · 13 years ago
  89. 3de4919 Issue #12012: ssl.PROTOCOL_SSLv2 becomes optional by Victor Stinner · 13 years ago
  90. ff9bfca Issue #12000: When a SSL certificate has a subjectAltName without any by Antoine Pitrou · 13 years ago
  91. 1c86b44 Issue #12000: When a SSL certificate has a subjectAltName without any by Antoine Pitrou · 13 years ago
  92. 15399c3 Issue #11811: ssl.get_server_certificate() is now IPv6-compatible. Patch by Antoine Pitrou · 13 years ago
  93. 86cbfec Merged revisions 88664 via svnmerge from by Antoine Pitrou · 13 years ago
  94. e93bf7a Issue #11326: Add the missing connect_ex() implementation for SSL sockets, by Antoine Pitrou · 13 years ago
  95. d532321 Issue #5639: Add a *server_hostname* argument to `SSLContext.wrap_socket` by Antoine Pitrou · 14 years ago
  96. 59fdd67 Issue #1589: Add ssl.match_hostname(), to help implement server identity by Antoine Pitrou · 14 years ago
  97. 5974cdd Merged revisions 84807 via svnmerge from by Antoine Pitrou · 14 years ago
  98. a468adc Issue #9853: Fix the signature of SSLSocket.recvfrom() and by Antoine Pitrou · 14 years ago
  99. 10c4c23 Merged revisions 84464 via svnmerge from by Antoine Pitrou · 14 years ago
  100. 24e561a Issue #3805: clean up implementation of the _read method in _ssl.c. by Antoine Pitrou · 14 years ago