mfkeys.lua: Remove trailing whitespaces.

This commit is contained in:
Arnie97 2018-01-25 14:48:26 +08:00
parent f88fa399bc
commit b5cf8b07e2

View file

@ -90,6 +90,7 @@ local function displayresults(results)
print("|--------------------------------------|")
end
-- A little helper to place an item first in the list
local function placeFirst(akey, list)
akey = akey:lower()
@ -106,6 +107,7 @@ local function placeFirst(akey, list)
end
return result
end
local function dumptofile(results)
local sector, blockNo, keyA, keyB,_
@ -132,7 +134,7 @@ local function dumptofile(results)
end
local function main( args)
local function main(args)
print(desc);
@ -149,7 +151,7 @@ local function main( args)
local keyType = 0 -- A=0, B=1
local numSectors = 16
if 0x18 == result.sak then --NXP MIFARE Classic 4k | Plus 4k
if 0x18 == result.sak then -- NXP MIFARE Classic 4k | Plus 4k
-- IFARE Classic 4K offers 4096 bytes split into forty sectors,
-- of which 32 are same size as in the 1K with eight more that are quadruple size sectors.
numSectors = 40
@ -159,7 +161,7 @@ local function main( args)
elseif 0x09 == result.sak then -- NXP MIFARE Mini 0.3k
-- MIFARE Classic mini offers 320 bytes split into five sectors.
numSectors = 5
elseif 0x10 == result.sak then-- "NXP MIFARE Plus 2k"
elseif 0x10 == result.sak then -- NXP MIFARE Plus 2k
numSectors = 32
else
print("I don't know how many sectors there are on this type of card, defaulting to 16")
@ -173,10 +175,10 @@ local function main( args)
The first 32 sectors of a mifare Classic 4k card consists of 4 data blocks and the remaining
8 sectors consist of 16 data blocks.
--]]
local blockNo = sector * 4 -1
local blockNo = sector * 4 - 1
if sector > 32 then
blockNo = 32*4+ (sector-32)*16 -1
blockNo = 32*4 + (sector-32)*16 - 1
end
local keyA = checkBlock(blockNo, keys, 0)
@ -187,7 +189,7 @@ local function main( args)
if keyB then keys = placeFirst(keyB, keys) end
keyB = keyB or ""
result[sector] = {blockNo, keyA, keyB }
result[sector] = {blockNo, keyA, keyB}
-- Check if user aborted
if core.ukbhit() then
@ -199,5 +201,4 @@ local function main( args)
dumptofile(result)
end
main( args)
main(args)