summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_ssl.py
Commit message (Expand)AuthorAgeFilesLines
...
| | | * > Regardless, building a fixed test certificate and checking it in sounds likeGuido van Rossum2007-08-271-8/+10
| | | * If we can't create a certificate, print a warning, but don't fail the test.Neal Norwitz2007-08-271-13/+16
| | | * Make a utility function for handling (printing) an errorNeal Norwitz2007-08-271-16/+14
| | | * Stop using string.join (from the module) to ease upgrade to py3kNeal Norwitz2007-08-271-10/+10
| | | * Another patch from Bill Janssen that:Neal Norwitz2007-08-261-6/+16
| | | * Get the test passing by commenting out some writes (should they be removed?)Neal Norwitz2007-08-261-2/+2
| | | * Bill Janssen wrote:Guido van Rossum2007-08-261-39/+82
| | | * Fail gracefully if the cert files cannot be createdNeal Norwitz2007-08-261-2/+7
| | | * Try to get this test to pass for systems that do not have SO_REUSEPORTNeal Norwitz2007-08-251-1/+4
| | | * Fix test so it is skipped properly if there is no SSL support.Neal Norwitz2007-08-251-2/+6
| | | * Server-side SSL and certificate validation, by Bill Janssen.Guido van Rossum2007-08-251-0/+304
* | | Replace IOError with OSError (#16715)Andrew Svetlov2012-12-251-9/+9
* | | Issue #16717: get rid of socket.error, replace with OSErrorAndrew Svetlov2012-12-181-14/+14
|/ /
* | Issue #16357: fix calling accept() on a SSLSocket created through SSLContext....Antoine Pitrou2012-11-111-0/+36
|\ \ | |/
| * Issue #16357: fix calling accept() on a SSLSocket created through SSLContext....Antoine Pitrou2012-11-111-0/+36
* | MERGE: Closes #15793: Stack corruption in ssl.RAND_egd()Jesus Cea2012-09-111-6/+2
|\ \ | |/
| * Closes #15793: Stack corruption in ssl.RAND_egd()Jesus Cea2012-09-111-6/+2
* | Issue #14837: SSL errors now have `library` and `reason` attributes describin...Antoine Pitrou2012-06-221-2/+43
* | Fix test connecting to sha256.tbs-internet.com.Antoine Pitrou2012-05-041-3/+8
|\ \ | |/
| * Fix test connecting to sha256.tbs-internet.com.Antoine Pitrou2012-05-041-3/+8
* | Issue #14204: The ssl module now has support for the Next Protocol Negotiatio...Antoine Pitrou2012-03-211-4/+50
* | Fix last remaining build issues of _ssl under old OpenSSLs. Patch by Vinay.Antoine Pitrou2012-02-191-1/+2
* | Issue #13895: fix test_ssl hanging under UbuntuAntoine Pitrou2012-01-281-25/+25
|\ \ | |/
| * Issue #13895: fix test_ssl hanging under UbuntuAntoine Pitrou2012-01-281-20/+20
* | Fix intermittent test_ssl failure.Antoine Pitrou2012-01-271-0/+1
|\ \ | |/
| * Fix intermittent test_ssl failure.Antoine Pitrou2012-01-271-0/+1
* | Issue #13636: Weak ciphers are now disabled by default in the ssl moduleAntoine Pitrou2012-01-031-1/+21
|\ \ | |/
| * Issue #13636: Weak ciphers are now disabled by default in the ssl moduleAntoine Pitrou2012-01-031-1/+21
* | Issue #13626: Add support for SSL Diffie-Hellman key exchange, through theAntoine Pitrou2011-12-221-0/+29
* | Use context managers in test_ssl to simplify test writing.Antoine Pitrou2011-12-211-83/+43
|\ \ | |/
| * Use context managers in test_ssl to simplify test writing.Antoine Pitrou2011-12-211-68/+35
* | Fix ssl module compilation if ECDH support was disabled in the OpenSSL build.Antoine Pitrou2011-12-211-0/+2
* | Fix for buggy testAntoine Pitrou2011-12-201-0/+1
* | Issue #13634: Add support for querying and disabling SSL compression.Antoine Pitrou2011-12-201-0/+26
* | Issue #13627: Add support for SSL Elliptic Curve-based Diffie-HellmanAntoine Pitrou2011-12-191-0/+10
* | Issue #13635: Add ssl.OP_CIPHER_SERVER_PREFERENCE, so that SSL serversAntoine Pitrou2011-12-191-0/+1
* | - Issue #13218: Fix test_ssl failures on Debian/Ubuntu.Barry Warsaw2011-10-281-2/+4
|\ \ | |/
| * - Issue #13218: Fix test_ssl failures on Debian/Ubuntu.Barry Warsaw2011-10-281-2/+4
* | Issue #11183: Add finer-grained exceptions to the ssl module, so thatAntoine Pitrou2011-10-271-20/+13
* | Issue #13034: When decoding some SSL certificates, the subjectAltName extensi...Antoine Pitrou2011-10-011-0/+26
|\ \ | |/
| * Issue #13034: When decoding some SSL certificates, the subjectAltName extensi...Antoine Pitrou2011-10-011-0/+26
* | Fix #12835: prevent use of the unencrypted sendmsg/recvmsg APIs on SSL wrappe...Nick Coghlan2011-08-271-0/+8
* | Issue #12803: SSLContext.load_cert_chain() now accepts a password argumentAntoine Pitrou2011-08-251-0/+57
* | Remove the SSLSocket versions of sendmsg/recvmsg due to lack of proper tests ...Nick Coghlan2011-08-231-16/+0
* | Add support for the send/recvmsg API to the socket module. Patch by David Wat...Nick Coghlan2011-08-221-0/+16
* | Issue #12551: Provide a get_channel_binding() method on SSL sockets so asAntoine Pitrou2011-07-201-0/+91
* | Issue #12440: When testing whether some bits in SSLContext.options can beAntoine Pitrou2011-07-081-1/+1
|\ \ | |/
| * Issue #12440: When testing whether some bits in SSLContext.options can beAntoine Pitrou2011-07-081-1/+1
* | Issue #12049: test_ssl now checks also that RAND_bytes() raises an error ifVictor Stinner2011-05-251-0/+2
* | Issue #12049: Add RAND_bytes() and RAND_pseudo_bytes() functions to the sslVictor Stinner2011-05-241-0/+8