HTTPS/Client-authenticated: Difference between revisions

Content added Content deleted
No edit summary
Line 14: Line 14:
(while (line)
(while (line)
(doSomeProcessingWithLine @) ) )</lang>
(doSomeProcessingWithLine @) ) )</lang>

=={{header|Python}}==
<lang python>import httplib

connection = httplib.HTTPSConnection('www.example.com',cert_file='myCert.PEM')
connection.request('GET','/index.html')
response = connection.getresponse()
data = response.read()
</lang>


=={{header|Racket}}==
=={{header|Racket}}==