mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-07-06 05:01:17 -07:00
Issue 20 patch (refactored code of the iso15693 implementation as well as several enhancements) [Adrian Dabrowski "atrox"]
This commit is contained in:
parent
6c1e2d95f4
commit
9455b51c2a
14 changed files with 1902 additions and 656 deletions
|
@ -37,7 +37,7 @@ def invert(data):
|
|||
return out
|
||||
|
||||
# do the actual search
|
||||
def search(data,target):
|
||||
def search(target,data):
|
||||
location= string.find(data,target)
|
||||
if location >= 0:
|
||||
print '*** Match at bit %d:' % location,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue