Jump to content

HTTPS/Client-authenticated: Difference between revisions

no edit summary
No edit summary
Line 14:
(while (line)
(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}}==
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.