當前位置: 首頁>>代碼示例>>Python>>正文


Python netutil.ssl_options_to_context方法代碼示例

本文整理匯總了Python中tornado.netutil.ssl_options_to_context方法的典型用法代碼示例。如果您正苦於以下問題:Python netutil.ssl_options_to_context方法的具體用法?Python netutil.ssl_options_to_context怎麽用?Python netutil.ssl_options_to_context使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在tornado.netutil的用法示例。


在下文中一共展示了netutil.ssl_options_to_context方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: get_ssl_options

# 需要導入模塊: from tornado import netutil [as 別名]
# 或者: from tornado.netutil import ssl_options_to_context [as 別名]
def get_ssl_options(self):
        context = ssl_options_to_context(
            AsyncHTTPSTestCase.get_ssl_options(self))
        assert isinstance(context, ssl.SSLContext)
        return context 
開發者ID:tao12345666333,項目名稱:tornado-zh,代碼行數:7,代碼來源:httpserver_test.py

示例2: get_ssl_options

# 需要導入模塊: from tornado import netutil [as 別名]
# 或者: from tornado.netutil import ssl_options_to_context [as 別名]
def get_ssl_options(self):
        context = ssl_options_to_context(AsyncHTTPSTestCase.get_ssl_options(self))
        assert isinstance(context, ssl.SSLContext)
        return context 
開發者ID:opendevops-cn,項目名稱:opendevops,代碼行數:6,代碼來源:httpserver_test.py

示例3: initialize

# 需要導入模塊: from tornado import netutil [as 別名]
# 或者: from tornado.netutil import ssl_options_to_context [as 別名]
def initialize(self, request_callback, ssl_options=None, **kwargs):
        if ssl_options is not None:
            if isinstance(ssl_options, dict):
                if 'certfile' not in ssl_options:
                    raise KeyError('missing key "certfile" in ssl_options')
                ssl_options = ssl_options_to_context(ssl_options)
            ssl_options.set_alpn_protocols([constants.HTTP2_TLS])
        # TODO: add h2-specific parameters like frame size instead of header size.
        self.http2_params = Params(
            max_header_size=kwargs.get('max_header_size'),
            decompress=kwargs.get('decompress_request', False),
        )
        super(Server, self).initialize(
            request_callback, ssl_options=ssl_options, **kwargs) 
開發者ID:bdarnell,項目名稱:tornado_http2,代碼行數:16,代碼來源:server.py

示例4: _get_ssl_options

# 需要導入模塊: from tornado import netutil [as 別名]
# 或者: from tornado.netutil import ssl_options_to_context [as 別名]
def _get_ssl_options(self, scheme):
        options = super(_HTTP2ClientConnection, self)._get_ssl_options(scheme)
        if options is not None:
            if isinstance(options, dict):
                options = ssl_options_to_context(options)
            options.set_alpn_protocols([constants.HTTP2_TLS])
        return options 
開發者ID:bdarnell,項目名稱:tornado_http2,代碼行數:9,代碼來源:client.py


注:本文中的tornado.netutil.ssl_options_to_context方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。