我有提供自簽名證書,我產生這樣的HTTPS連接龍捲風服務器:HTTPS Python客戶端
openssl genrsa -out privatekey.pem 1024
openssl req -new -key privatekey.pem -out certrequest.csr
openssl x509 -req -in certrequest.csr -signkey privatekey.pem -out certificate.pem
服務器的代碼如下:
import tornado.ioloop
import tornado.web
import tornado.httpserver
import os
class MainHandler(tornado.web.RequestHandler):
def get(self):
print "new client "+str(self)
self.write("Hello, world")
application = tornado.web.Application([
(r"/", MainHandler),
])
http_server = tornado.httpserver.HTTPServer(application,
ssl_options={
"certfile": os.path.join("./", "certificate.pem"),
"keyfile": os.path.join("./", "privatekey.pem"),
})
if __name__ == "__main__":
http_server.listen(443)
tornado.ioloop.IOLoop.instance().start()
我想有一個連接到服務器的python客戶端,並檢查服務器是否是正確的服務器(我猜是通過它的證書)。 目前我做了一個簡單的客戶端是這樣的:
import httplib
HOSTNAME='localhost'
conn = httplib.HTTPSConnection(HOSTNAME)
conn.putrequest('GET','/')
conn.endheaders()
response = conn.getresponse()
print response.read()
什麼你會建議我做(客戶端將在稍後爲移動應用我只使用Python爲原型)?
謝謝。
如果你能爲我提供一個Java的客戶端也是可以的。 – lc2817
相關http://www.heikkitoivonen.net/blog/2010/08/23/ssl-in-python-2-7/ – jfs
相關:http://stackoverflow.com/questions/1087227/validate-ssl-certificates -with-python – jfs