[issue3466] urllib2 should support HTTPS connections with client keys

2011-01-06 Thread Antoine Pitrou
Antoine Pitrou added the comment: In 3.2, you can instantiate a HTTPSHandler with a custom SSLContext, on which you can load your client cert: http://docs.python.org/dev/library/urllib.request.html#urllib.request.HTTPSHandler http://docs.python.org/dev/library/ssl.html#ssl.SSLContext.load_cert_

[issue3466] urllib2 should support HTTPS connections with client keys

2009-04-29 Thread Marcelo Fernández
Marcelo Fernández added the comment: The workaround I posted before doesn't work with Python 2.6. This one works (at least) with Python 2.5 *and* Python 2.6: import httplib import urllib2 key_file = 'mykey.pem' cert_file = 'mycert-signed.pem' class HTTPSClientAuthConnection(httplib.HTTPSConn

[issue3466] urllib2 should support HTTPS connections with client keys

2009-04-22 Thread Daniel Diniz
Changes by Daniel Diniz : -- keywords: +easy, patch priority: -> normal ___ Python tracker ___ ___ Python-bugs-list mailing list Unsub

[issue3466] urllib2 should support HTTPS connections with client keys

2009-02-12 Thread Daniel Diniz
Changes by Daniel Diniz : -- nosy: +jjlee stage: -> test needed versions: +Python 2.7 ___ Python tracker ___ ___ Python-bugs-list mail

[issue3466] urllib2 should support HTTPS connections with client keys

2008-08-07 Thread Senthil
Changes by Senthil <[EMAIL PROTECTED]>: -- nosy: +orsenthil ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs-list mailing list

[issue3466] urllib2 should support HTTPS connections with client keys

2008-07-29 Thread Marcelo Fernández
New submission from Marcelo Fernández <[EMAIL PROTECTED]>: Despite httplib does have support for HTTPS with client keys[1], urllib2 should support them too, because of the added value that urllib2 has, like cookielib automatic handling. [1]: http://code.activestate.com/recipes/117004/ However,