mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
FIX: forgot a lua object for the call to ConvertAsciiToHex. Thanks @romaric for finding it.
This commit is contained in:
parent
74d3f41bca
commit
8977988fb6
1 changed files with 1 additions and 1 deletions
|
@ -216,7 +216,7 @@ local function main(args)
|
|||
local baseStr = utils.ConvertHexToAscii(tmpHash:format(blockNo))
|
||||
local key = md5.sumhexa(baseStr)
|
||||
local aestest = core.aes128_decrypt(key, blockdata)
|
||||
local hex = ConvertAsciiToHex(aestest)
|
||||
local hex = utils.ConvertAsciiToHex(aestest)
|
||||
|
||||
blocks[blockNo+1] = ('%02d :: %s'):format(blockNo,hex)
|
||||
io.write(blockNo..',')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue