本文整理汇总了Python中tlslite.utils.codec.Writer.addVarTupleSeq方法的典型用法代码示例。如果您正苦于以下问题:Python Writer.addVarTupleSeq方法的具体用法?Python Writer.addVarTupleSeq怎么用?Python Writer.addVarTupleSeq使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类tlslite.utils.codec.Writer
的用法示例。
在下文中一共展示了Writer.addVarTupleSeq方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_addVarTupleSeq_with_single_element_tuples
# 需要导入模块: from tlslite.utils.codec import Writer [as 别名]
# 或者: from tlslite.utils.codec.Writer import addVarTupleSeq [as 别名]
def test_addVarTupleSeq_with_single_element_tuples(self):
w = Writer()
w.addVarTupleSeq([[1], [9], [12]], 2, 3)
self.assertEqual(bytearray(
b'\x00\x00\x06' + # length
b'\x00\x01' + # 1st element
b'\x00\x09' + # 2nd element
b'\x00\x0c'), w.bytes)
示例2: test_addVarTupleSeq
# 需要导入模块: from tlslite.utils.codec import Writer [as 别名]
# 或者: from tlslite.utils.codec.Writer import addVarTupleSeq [as 别名]
def test_addVarTupleSeq(self):
w = Writer()
w.addVarTupleSeq([(1, 2), (2, 9)], 1, 2)
self.assertEqual(bytearray(
b'\x00\x04' + # length
b'\x01\x02' + # first tuple
b'\x02\x09' # second tuple
), w.bytes)
示例3: test_addVarTupleSeq_with_double_byte_overflowing_data
# 需要导入模块: from tlslite.utils.codec import Writer [as 别名]
# 或者: from tlslite.utils.codec.Writer import addVarTupleSeq [as 别名]
def test_addVarTupleSeq_with_double_byte_overflowing_data(self):
w = Writer()
with self.assertRaises(ValueError):
w.addVarTupleSeq([(1, 2), (3, 0x10000)], 2, 2)
示例4: test_addVarTupleSeq_with_double_byte_invalid_sized_tuples
# 需要导入模块: from tlslite.utils.codec import Writer [as 别名]
# 或者: from tlslite.utils.codec.Writer import addVarTupleSeq [as 别名]
def test_addVarTupleSeq_with_double_byte_invalid_sized_tuples(self):
w = Writer()
with self.assertRaises(ValueError):
w.addVarTupleSeq([(1, 2), (2, 3, 4)], 2, 2)
示例5: test_addVarTupleSeq_with_overflowing_data
# 需要导入模块: from tlslite.utils.codec import Writer [as 别名]
# 或者: from tlslite.utils.codec.Writer import addVarTupleSeq [as 别名]
def test_addVarTupleSeq_with_overflowing_data(self):
w = Writer()
with self.assertRaises(ValueError):
w.addVarTupleSeq([(1, 2), (2, 256)], 1, 2)
示例6: test_addVarTupleSeq_with_empty_array
# 需要导入模块: from tlslite.utils.codec import Writer [as 别名]
# 或者: from tlslite.utils.codec.Writer import addVarTupleSeq [as 别名]
def test_addVarTupleSeq_with_empty_array(self):
w = Writer()
w.addVarTupleSeq([], 1, 2)
self.assertEqual(bytearray(
b'\x00\x00'), w.bytes)