本文整理汇总了Python中flextls.protocol.Protocol.assemble方法的典型用法代码示例。如果您正苦于以下问题:Python Protocol.assemble方法的具体用法?Python Protocol.assemble怎么用?Python Protocol.assemble使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类flextls.protocol.Protocol
的用法示例。
在下文中一共展示了Protocol.assemble方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: assemble
# 需要导入模块: from flextls.protocol import Protocol [as 别名]
# 或者: from flextls.protocol.Protocol import assemble [as 别名]
def assemble(self):
cipher_data = b""
for cipher in self.cipher_suites:
cipher_data = cipher_data + cipher.assemble()
if len(self.challenge) == 0:
# ToDo: error
pass
self.cipher_suites_length = len(cipher_data)
self.session_id_length = len(self.session_id)
self.challenge_length = len(self.challenge)
data = cipher_data
data += self.session_id
data += self.challenge
data = Protocol.assemble(self) + data
return data
示例2: assemble
# 需要导入模块: from flextls.protocol import Protocol [as 别名]
# 或者: from flextls.protocol.Protocol import assemble [as 别名]
def assemble(self):
data = Protocol.assemble(self)
data = data + self.padding
return data