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