1. eb0d359 bpo-40443: Remove unused imports in stdlib (GH-19815) by Victor Stinner · 4 years, 3 months ago
  2. 477b1b2 bpo-37463: match_hostname requires quad-dotted IPv4 (GH-14499) by Christian Heimes · 5 years ago
  3. e35d1ba bpo-34271: Fix compatibility with 1.0.2 (GH-13728) by Christian Heimes · 5 years ago
  4. 0d70227 Fix typos in docs and docstrings (GH-13745) by Xtreak · 5 years ago
  5. c7f7069 bpo-34271: Add ssl debugging helpers (GH-10031) by Christian Heimes · 5 years ago
  6. 80ed353 Simplify SSLSocket / SSLObject doc string (GH-9972) by Christian Heimes · 5 years ago
  7. 42b1d61 bpo-33023: Fix NotImplemented to NotImplementedError. (GH-10934) by Serhiy Storchaka · 6 years ago
  8. fc7d1b3 Fix a typo ssl.py docstring (GH-9697) by Matt Eaton · 6 years ago
  9. 9fb051f bpo-34670: Add TLS 1.3 post handshake auth (GH-9460) by Christian Heimes · 6 years ago
  10. 0fb9fad bpo-34282: Fix Enum._convert shadowing members named _convert (GH-8568) by orlnub123 · 6 years ago
  11. e42ae91 bpo-24334: Remove inaccurate match_hostname call (#6211) by Christian Heimes · 6 years ago
  12. 698dde1 bpo-31453: Add setter for min/max protocol version (#5259) by Christian Heimes · 6 years ago
  13. 9d50ab5 bpo-32951: Disable SSLSocket/SSLObject constructor (#5864) by Christian Heimes · 6 years ago
  14. 141c5e8 bpo-24334: Cleanup SSLSocket (#5252) by Christian Heimes · 6 years ago
  15. aef1283 bpo-32819: Simplify and improve ssl.match_hostname (#5620) by Christian Heimes · 6 years ago
  16. 11a1493 [bpo-28414] Make all hostnames in SSL module IDN A-labels (GH-5128) by Christian Heimes · 6 years ago
  17. 892d66e bpo-31429: Define TLS cipher suite on build time (#3532) by Christian Heimes · 7 years ago
  18. 61d478c bpo-31399: Let OpenSSL verify hostname and IP address (#3462) by Christian Heimes · 7 years ago
  19. 746cc75 bpo-31853: Replaced socket.method calls with super() in SSLSocket. (#4048) by Mads Jensen · 7 years ago
  20. ede2ac9 bpo-23033: Improve SSL Certificate handling (GH-937) by Mandeep Singh · 7 years ago
  21. b75a228 bpo-31659: Use simple slicing to format PEM cert (GH-3849) by INADA Naoki · 7 years ago
  22. a170fa1 bpo-31346: Use PROTOCOL_TLS_CLIENT/SERVER (#3058) by Christian Heimes · 7 years ago
  23. 4df60f1 bpo-31386: Custom wrap_bio and wrap_socket type (#3426) by Christian Heimes · 7 years ago
  24. b3ad0e5 bpo-28182: Expose OpenSSL verification results (#3412) by Christian Heimes · 7 years ago
  25. cb5b68a bpo-29136: Add TLS 1.3 cipher suites and OP_NO_TLSv1_3 (#1363) by Christian Heimes · 7 years ago
  26. 888bbdc bpo-27340: Use memoryview in SSLSocket.sendall() (#3384) by Christian Heimes · 7 years ago
  27. 5fe668c Issue #28085: Add PROTOCOL_TLS_CLIENT and PROTOCOL_TLS_SERVER for SSLContext by Christian Heimes · 8 years ago
  28. 99a6570 Issue #19500: Add client-side SSL session resumption to the ssl module. by Christian Heimes · 8 years ago
  29. d048637 Issue #28022: Deprecate ssl-related arguments in favor of SSLContext. by Christian Heimes · 8 years ago
  30. 358cfd4 Issue 28043: SSLContext has improved default settings by Christian Heimes · 8 years ago
  31. 3aeacad Issue #28025: Convert all ssl module constants to IntEnum and IntFlags. by Christian Heimes · 8 years ago
  32. ac041c0 Issues #27850 and #27766: Remove 3DES from ssl default cipher list and add ChaCha20 Poly1305. by Christian Heimes · 8 years ago
  33. 03d13c0 Issues #27850 and #27766: Remove 3DES from ssl default cipher list and add ChaCha20 Poly1305. by Christian Heimes · 8 years ago
  34. 01113fa Issue #26470: Port ssl and hashlib module to OpenSSL 1.1.0. by Christian Heimes · 8 years ago
  35. 598894f Issue #26470: Port ssl and hashlib module to OpenSSL 1.1.0. by Christian Heimes · 8 years ago
  36. 48df37d Issue #27114: Fix SSLContext._load_windows_store_certs fails with PermissionError by Steve Dower · 8 years ago
  37. 33bc4a2 Issue #27114: Fix SSLContext._load_windows_store_certs fails with PermissionError by Steve Dower · 8 years ago
  38. 519f912 Issue #25951: Fix SSLSocket.sendall() to return None, by Aviv Palivoda by Martin Panter · 8 years ago
  39. f6b1d66 Issue #23804: Fix SSL recv/read(0) to not return 1024 bytes by Martin Panter · 8 years ago
  40. 8dd7aeb Issue #26313: ssl.py _load_windows_store_certs fails if windows cert store is empty. Patch by Baji. by Steve Dower · 8 years ago
  41. 24e837f issue23673 by Ethan Furman · 9 years ago
  42. 3e2500d merge 3.4 by Benjamin Peterson · 9 years ago
  43. 7bcf9a5 use _import_symbols to import VERIFY_* constants by Benjamin Peterson · 9 years ago
  44. 869311d merge 3.4 (#23481) by Benjamin Peterson · 9 years ago
  45. 500af33 remove rc4 from the default client ciphers (closes #23481) by Benjamin Peterson · 9 years ago
  46. c481bfb Issue #23239: ssl.match_hostname() now supports matching of IP addresses. by Antoine Pitrou · 9 years ago
  47. cca2732 add support for ALPN (closes #20188) by Benjamin Peterson · 10 years ago
  48. c114e7d remove extra definite article by Benjamin Peterson · 10 years ago
  49. 5318c7a explain None can be returned by Benjamin Peterson · 10 years ago
  50. 4cb1781 expose the client's cipher suites from the handshake (closes #23186) by Benjamin Peterson · 10 years ago
  51. fcfed19 Issue #21356: Make ssl.RAND_egd() optional to support LibreSSL. The by Victor Stinner · 10 years ago
  52. 9d01717 Issue #20896, #22935: The ssl.get_server_certificate() function now uses the by Victor Stinner · 10 years ago
  53. 0041142 Issue #22935: Fix ssl module when SSLv3 protocol is not supported by Victor Stinner · 10 years ago
  54. 7243b57 don't require OpenSSL SNI to pass hostname to ssl functions (#22921) by Benjamin Peterson · 10 years ago
  55. beeb512 Issue #21356: Make ssl.RAND_egd() optional to support LibreSSL. The by Victor Stinner · 10 years ago
  56. f9284ae merge 3.4 (#22921) by Benjamin Peterson · 10 years ago
  57. 1cca273 merge 3.4 (#22417) by Benjamin Peterson · 10 years ago
  58. 4ffb075 PEP 476: enable HTTPS certificate verification by default (#22417) by Benjamin Peterson · 10 years ago
  59. 1ed2e69 Issue #22186: Fix typos in Lib/. by Berker Peksag · 10 years ago
  60. f23530f Issue #22186: Fix typos in Lib/. by Berker Peksag · 10 years ago
  61. a21de3d Issue #22638: SSLv3 is now disabled throughout the standard library. by Antoine Pitrou · 10 years ago
  62. e4eda4d Issue #22638: SSLv3 is now disabled throughout the standard library. by Antoine Pitrou · 10 years ago
  63. 3cb9379 Remove unused "block" argument in SSLObject.do_handshake() (issue #21965) by Antoine Pitrou · 10 years ago
  64. b1fdf47 Issue #21965: Add support for in-memory SSL to the ssl module. by Antoine Pitrou · 10 years ago
  65. 8b9cfa1 merge 3.4 (#22449) by Benjamin Peterson · 10 years ago
  66. 5915b0f also use openssl envvars to find certs on windows (closes #22449) by Benjamin Peterson · 10 years ago
  67. 47e4042 Issue #20421: Add a .version() method to SSL sockets exposing the actual protocol version in use. by Antoine Pitrou · 10 years ago
  68. 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
  69. 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
  70. 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
  71. 172f025 Issue #21068: The ssl.PROTOCOL* constants are now enum members. by Antoine Pitrou · 10 years ago
  72. 94a5b66 Issue #20896: ssl.get_server_certificate() now uses PROTOCOL_SSLv23, not PROTOCOL_SSLv3, for maximum compatibility. by Antoine Pitrou · 10 years ago
  73. 6a2ba94 Issue #21013: Enhance ssl.create_default_context() for server side contexts by Donald Stufft · 10 years ago
  74. 79ccaa2 Issue #20995: Enhance default ciphers used by the ssl module by Donald Stufft · 10 years ago
  75. 7fa767e Issue #20976: pyflakes: Remove unused imports by Victor Stinner · 10 years ago
  76. 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
  77. 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
  78. 1da3ba8 Issue #19509: Don't close the socket in do_handshake() when hostname verification fails. by Christian Heimes · 11 years ago
  79. a02c69a add check_hostname arg to ssl._create_stdlib_context() by Christian Heimes · 11 years ago
  80. 1aa9a75 Issue #19509: Add SSLContext.check_hostname to match the peer's certificate by Christian Heimes · 11 years ago
  81. dec813f ssl.create_default_context() sets OP_NO_COMPRESSION to prevent CRIME by Christian Heimes · 11 years ago
  82. 67986f9 Issue #19735: Implement private function ssl._create_stdlib_context() to by Christian Heimes · 11 years ago
  83. 4c05b47 Issue #19689: Add ssl.create_default_context() factory function. It creates by Christian Heimes · 11 years ago
  84. 72d2850 Issue #19292: Add SSLContext.load_default_certs() to load default root CA by Christian Heimes · 11 years ago
  85. 44109d7 Issue #17134: Finalize interface to Windows' certificate store. Cert and by Christian Heimes · 11 years ago
  86. 2258779 Issue #8813: Add SSLContext.verify_flags to change the verification flags by Christian Heimes · 11 years ago
  87. 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
  88. 72c98d3 Issue #17997: Change behavior of ``ssl.match_hostname()`` to follow RFC 6125, by Georg Brandl · 11 years ago
  89. b89b5df merge with 3.3 by Georg Brandl · 11 years ago
  90. 9a3777e #18705: merge with 3.3. by Ezio Melotti · 11 years ago
  91. 30b9d5d #18705: fix a number of typos. Patch by Févry Thibault. by Ezio Melotti · 11 years ago
  92. 60a26e0 Issue #9177: Calling read() or write() now raises ValueError, not AttributeError, on a closed SSL socket. by Antoine Pitrou · 11 years ago
  93. cd171c8 Issue #18200: Back out usage of ModuleNotFoundError (8d28d44f3a9a) by Brett Cannon · 11 years ago
  94. 0a14066 Issue #18200: Update the stdlib (except tests) to use ModuleNotFoundError. by Brett Cannon · 11 years ago
  95. 46bebee Issue #17134: Add ssl.enum_cert_store() as interface to Windows' cert store. by Christian Heimes · 11 years ago
  96. 6d7ad13 Issue #18143: Implement ssl.get_default_verify_paths() in order to debug by Christian Heimes · 11 years ago
  97. 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
  98. 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
  99. 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
  100. 06d0c1e remove uneffective 'while True' clause by Giampaolo Rodola' · 11 years ago