当前位置: 首页>>代码示例>>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;未经允许,请勿转载。