本文整理汇总了Python中TLV_utils.tlv_unpack方法的典型用法代码示例。如果您正苦于以下问题:Python TLV_utils.tlv_unpack方法的具体用法?Python TLV_utils.tlv_unpack怎么用?Python TLV_utils.tlv_unpack使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TLV_utils
的用法示例。
在下文中一共展示了TLV_utils.tlv_unpack方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _find_recursive
# 需要导入模块: import TLV_utils [as 别名]
# 或者: from TLV_utils import tlv_unpack [as 别名]
def _find_recursive(search_tag, data):
while len(data) > 0:
if ord(data[0]) in (0x00, 0xFF):
data = data[1:]
continue
ber_class, constructed, tag, length, value, data = TLV_utils.tlv_unpack(data)
if not constructed:
if tag == search_tag:
return value
else:
ret = Card_with_ls._find_recursive(search_tag, value)
if ret is not None: return ret
return None