mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-20 20:18:17 +08:00
chg: added to print the author.
This commit is contained in:
parent
180ec86ef0
commit
3c61ee4338
2 changed files with 1 additions and 4 deletions
|
@ -52,10 +52,8 @@ end
|
||||||
|
|
||||||
local function readdump(infile)
|
local function readdump(infile)
|
||||||
t = infile:read("*all")
|
t = infile:read("*all")
|
||||||
--print(string.len(t))
|
|
||||||
len = string.len(t)
|
len = string.len(t)
|
||||||
local len,hex = bin.unpack(("H%d"):format(len),t)
|
local len,hex = bin.unpack(("H%d"):format(len),t)
|
||||||
--print(len,hex)
|
|
||||||
return hex
|
return hex
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -37,6 +37,7 @@ end
|
||||||
-- Usage help
|
-- Usage help
|
||||||
function help()
|
function help()
|
||||||
print(desc)
|
print(desc)
|
||||||
|
print(author)
|
||||||
print("Example usage")
|
print("Example usage")
|
||||||
print(example)
|
print(example)
|
||||||
end
|
end
|
||||||
|
@ -56,10 +57,8 @@ end
|
||||||
|
|
||||||
local function readdump(infile)
|
local function readdump(infile)
|
||||||
t = infile:read("*all")
|
t = infile:read("*all")
|
||||||
--print(string.len(t))
|
|
||||||
len = string.len(t)
|
len = string.len(t)
|
||||||
local len,hex = bin.unpack(("H%d"):format(len),t)
|
local len,hex = bin.unpack(("H%d"):format(len),t)
|
||||||
--print(len,hex)
|
|
||||||
return hex
|
return hex
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue