1. 66e5742 bpo-28414: ssl module idna test (#5395) by Christian Heimes · 7 years ago
  2. 892d66e bpo-31429: Define TLS cipher suite on build time (#3532) by Christian Heimes · 7 years ago
  3. 61d478c bpo-31399: Let OpenSSL verify hostname and IP address (#3462) by Christian Heimes · 7 years ago
  4. bd5c7d2 bpo-32602: Test ECDSA certs (#5247) by Christian Heimes · 7 years ago
  5. 53f7a7c bpo-32297: Few misspellings found in Python source code comments. (#4803) by Mike · 7 years ago
  6. ede2ac9 bpo-23033: Improve SSL Certificate handling (GH-937) by Mandeep Singh · 7 years ago
  7. e82c034 bpo-31431: SSLContext.check_hostname auto-sets CERT_REQUIRED (#3531) by Christian Heimes · 7 years ago
  8. a170fa1 bpo-31346: Use PROTOCOL_TLS_CLIENT/SERVER (#3058) by Christian Heimes · 7 years ago
  9. 4df60f1 bpo-31386: Custom wrap_bio and wrap_socket type (#3426) by Christian Heimes · 7 years ago
  10. 50a72af test_ssl: Implement timeout in ssl_io_loop() (#3500) by Victor Stinner · 7 years ago
  11. b3ad0e5 bpo-28182: Expose OpenSSL verification results (#3412) by Christian Heimes · 7 years ago
  12. cb5b68a bpo-29136: Add TLS 1.3 cipher suites and OP_NO_TLSv1_3 (#1363) by Christian Heimes · 7 years ago
  13. 888bbdc bpo-27340: Use memoryview in SSLSocket.sendall() (#3384) by Christian Heimes · 7 years ago
  14. a6a4dc8 bpo-31370: Remove support for threads-less builds (#3385) by Antoine Pitrou · 7 years ago
  15. 6877111 bpo-29781: Fix SSLObject.version before handshake (#3364) by Christian Heimes · 7 years ago
  16. 305e56c bpo-31320: No traceback to sys.stderr in test_ssl (#3360) by Christian Heimes · 7 years ago
  17. 002d640 bpo-25674: remove sha256.tbs-internet.com ssl test (#3297) by Christian Heimes · 7 years ago
  18. 8687101 bpo-31323: Fix reference leak in test_ssl (#3263) by Victor Stinner · 7 years ago
  19. 7b40cb7 bpo-30714: ALPN changes for OpenSSL 1.1.0f (#2305) by Christian Heimes · 7 years ago
  20. 68d663c [bpo-30916] Pre-build OpenSSL and Tcl/Tk for Windows (#2688) by Steve Dower · 7 years ago
  21. 59fdf0f Add a test for bad IDNA in ssl server_hostname (#1997) by Nathaniel J. Smith · 7 years ago
  22. 1dae745 bpo-30199: test_ssl closes all asyncore channels (#1381) by Victor Stinner · 7 years ago
  23. 70d28a1 Remove unused imports. by Serhiy Storchaka · 8 years ago
  24. b1321fb Issue #28394: More typo fixes for 3.6+ by Martin Panter · 8 years ago
  25. a5d0765 Finish GC code for SSLSession and increase test coverage by Christian Heimes · 8 years ago
  26. 22ecc4b Issue #28221: Merge SSL test cleanup from 3.5 into 3.6 by Martin Panter · 8 years ago
  27. 8609cda Issue #28221: Remove unused assignment from test_asyncore_server() by Martin Panter · 8 years ago
  28. 3217b12 Merge socketserver fixes from 3.5 into 3.6 by Martin Panter · 8 years ago
  29. 463ef2b Fix references to Python 3’s socketserver (lowercase) module by Martin Panter · 8 years ago
  30. 9017ec1 Issue #28093: Check more invalid combinations of PROTOCOL_TLS_CLIENT / PROTOCOL_TLS_SERVER by Christian Heimes · 8 years ago
  31. 5fe668c Issue #28085: Add PROTOCOL_TLS_CLIENT and PROTOCOL_TLS_SERVER for SSLContext by Christian Heimes · 8 years ago
  32. 99a6570 Issue #19500: Add client-side SSL session resumption to the ssl module. by Christian Heimes · 8 years ago
  33. d048637 Issue #28022: Deprecate ssl-related arguments in favor of SSLContext. by Christian Heimes · 8 years ago
  34. 358cfd4 Issue 28043: SSLContext has improved default settings by Christian Heimes · 8 years ago
  35. 1c03abd Issue #27691: Fix ssl module's parsing of GEN_RID subject alternative name fields in X.509 certs. by Christian Heimes · 8 years ago
  36. 598894f Issue #26470: Port ssl and hashlib module to OpenSSL 1.1.0. by Christian Heimes · 8 years ago
  37. 44b548d #27364: fix "incorrect" uses of escape character in the stdlib. by R David Murray · 8 years ago
  38. fe3c9c1 Issue #27691: Fix ssl module's parsing of GEN_RID subject alternative name fields in X.509 certs. by Christian Heimes · 8 years ago
  39. 582282b Issue 27866: relax get_cipher() test even more. Gentoo buildbot has no ECDHE by Christian Heimes · 8 years ago
  40. ea9b2dc Issue 27866: relax test case for set_cipher() and allow more cipher suites by Christian Heimes · 8 years ago
  41. 25bfcd5 Issue #27866: Add SSLContext.get_ciphers() method to get a list of all enabled ciphers. by Christian Heimes · 8 years ago
  42. 01113fa Issue #26470: Port ssl and hashlib module to OpenSSL 1.1.0. by Christian Heimes · 8 years ago
  43. 7386268 Issue #23804: Merge SSL recv() fix from 3.5 by Martin Panter · 8 years ago
  44. bed7f1a Issue #23804: Fix SSL zero-length recv() calls to not block and raise EOF by Martin Panter · 8 years ago
  45. c2f2ef8 Merge from 3.5. by Larry Hastings · 8 years ago
  46. f7c5624 Issue #26867: Ubuntu's openssl OP_NO_SSLv3 is forced on by default; fix test. by Matthias Klose · 8 years ago
  47. 519f912 Issue #25951: Fix SSLSocket.sendall() to return None, by Aviv Palivoda by Martin Panter · 8 years ago
  48. ef4bb1e Issue #23804: Merge SSL zero read fix from 3.5 by Martin Panter · 8 years ago
  49. f6b1d66 Issue #23804: Fix SSL recv/read(0) to not return 1024 bytes by Martin Panter · 8 years ago
  50. afd465d Issue #26644: Merge SSL negative read fix from 3.5 by Martin Panter · 8 years ago
  51. 5503d47 Issue #26644: Raise ValueError for negative SSLSocket.recv() and read() by Martin Panter · 8 years ago
  52. 3840b2a Issue #25940: Use internal local server more in test_ssl by Martin Panter · 8 years ago
  53. e0b75b7 Fix test_ssl.test_refcycle() by Victor Stinner · 8 years ago
  54. 3464ea2 Issue #26173: Separate bad cert file tests and client rejection test by Martin Panter · 9 years ago
  55. 407b62f Issue #26173: Fix test_ssl confusion with non-existing cert and wrongcert.pem by Martin Panter · 9 years ago
  56. a8b43b5 Issue #25940: Merge ETIMEDOUT fix from 3.4 into 3.5 by Martin Panter · 9 years ago
  57. 3f2240c Issue #25940: Merge ETIMEDOUT fix from 3.3 into 3.4 by Martin Panter · 9 years ago
  58. fab75d9 Issue #25940: Merge ETIMEDOUT fix from 3.2 into 3.3 by Martin Panter · 9 years ago
  59. 035583b Issue #25940: On Windows, connecting to port 444 returns ETIMEDOUT by Martin Panter · 9 years ago
  60. 40b97ec Issue #25940: Update new SSL tests for self-signed.pythontest.net by Martin Panter · 9 years ago
  61. 17cbee4 Issue #25940: Merge self-signed.pythontest.net testing from 3.4 into 3.5 by Martin Panter · 9 years ago
  62. b55f8b7 Issue #25940: Update new SSL tests for self-signed.pythontest.net by Martin Panter · 9 years ago
  63. 514bb07 Issue #25940: Merge self-signed.pythontest.net testing from 3.3 into 3.4 by Martin Panter · 9 years ago
  64. 73f5507 Issue #25940: Merge self-signed.pythontest.net testing from 3.2 into 3.3 by Martin Panter · 9 years ago
  65. 3d81d93 Issue #25940: Use self-signed.pythontest.net in SSL tests by Martin Panter · 9 years ago
  66. 45bde5d merge 3.4 (#25530) by Benjamin Peterson · 9 years ago
  67. a9dcdab always set OP_NO_SSLv3 by default (closes #25530) by Benjamin Peterson · 9 years ago
  68. 9e7990a Issue #24210: Silence more PendingDeprecationWarning warnings in tests. by Berker Peksag · 9 years ago
  69. 4b9df0d merge 3.4 (#23844) by Benjamin Peterson · 9 years ago
  70. a7eaf56 replace 512 bit dh key with a 2014 bit one (closes #23844) by Benjamin Peterson · 9 years ago
  71. 8490f5a Issue #23001: Few functions in modules mmap, ossaudiodev, socket, ssl, and by Serhiy Storchaka · 9 years ago
  72. 18987a1 Issue #20617: Remove unused import in test_ssl. by Berker Peksag · 9 years ago
  73. 4a0e147 Issue #20617: Remove unused import in test_ssl. by Berker Peksag · 9 years ago
  74. 3e2500d merge 3.4 by Benjamin Peterson · 9 years ago
  75. c3d9c5c adjust test_crl_check for trusted first being default by Benjamin Peterson · 9 years ago
  76. de8eca4 merge 3.4 by Benjamin Peterson · 9 years ago
  77. 990fcaa expose X509_V_FLAG_TRUSTED_FIRST by Benjamin Peterson · 9 years ago
  78. c481bfb Issue #23239: ssl.match_hostname() now supports matching of IP addresses. by Antoine Pitrou · 9 years ago
  79. 7aa4428 Issue #23345: merge from 3.4 by Ned Deily · 10 years ago
  80. 05784a7 Issue #23345: Prevent test_ssl failures with large OpenSSL patch level by Ned Deily · 10 years ago
  81. 8861502 prefer server alpn ordering over the client's by Benjamin Peterson · 10 years ago
  82. cca2732 add support for ALPN (closes #20188) by Benjamin Peterson · 10 years ago
  83. 1504292 enable cert validation in test by Benjamin Peterson · 10 years ago
  84. 23ef9fa trying again by Benjamin Peterson · 10 years ago
  85. e6838e0 reorder cipher prefs by Benjamin Peterson · 10 years ago
  86. 44c7779 drop 256 by Benjamin Peterson · 10 years ago
  87. 359f298 try using AES256 by Benjamin Peterson · 10 years ago
  88. 8791d69 fix assertions after ciphers were changed by Benjamin Peterson · 10 years ago
  89. f78b78a rc4 is a long time favorite by Benjamin Peterson · 10 years ago
  90. 438a8db everyone should support AES ciphers by Benjamin Peterson · 10 years ago
  91. 9f6ecea include some more ciphers by Benjamin Peterson · 10 years ago
  92. aacd524 force test server to speak tlsv1 by Benjamin Peterson · 10 years ago
  93. e27a421 remove apparently wrong assertion about des bit size by Benjamin Peterson · 10 years ago
  94. 4cb1781 expose the client's cipher suites from the handshake (closes #23186) by Benjamin Peterson · 10 years ago
  95. fcfed19 Issue #21356: Make ssl.RAND_egd() optional to support LibreSSL. The by Victor Stinner · 10 years ago
  96. 789b805 test_ssl: add more debug to investigate test_openssl_version() failure on by Victor Stinner · 10 years ago
  97. 3f7e064 Issue #22935: Fix test_ssl when the SSLv3 protocol is not supported by Victor Stinner · 10 years ago
  98. e32467c allow ssl module to compile if openssl doesn't support SSL 3 (closes #22935) by Benjamin Peterson · 10 years ago
  99. 7243b57 don't require OpenSSL SNI to pass hostname to ssl functions (#22921) by Benjamin Peterson · 10 years ago
  100. 648b862 Issue #22935: Fix test_ssl when the SSLv3 protocol is not supported by Victor Stinner · 10 years ago