本文整理匯總了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