mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-01 13:14:30 +08:00
chg: 'hf iclass chk' - unsigned long long.
This commit is contained in:
parent
c50c0e49d6
commit
51d1bb2aaa
1 changed files with 1 additions and 2 deletions
|
@ -1874,7 +1874,7 @@ int CmdHFiClassCheckKeys(const char *Cmd) {
|
|||
keyBlock = p;
|
||||
|
||||
memset(keyBlock + 8 * keycnt, 0, 8);
|
||||
num_to_bytes(strtoll(buf, NULL, 16), 8, keyBlock + 8 * keycnt);
|
||||
num_to_bytes(strtoull(buf, NULL, 16), 8, keyBlock + 8 * keycnt);
|
||||
|
||||
PrintAndLog("check key[%2d] %016" PRIx64, keycnt, bytes_to_num(keyBlock + 8*keycnt, 8));
|
||||
keycnt++;
|
||||
|
@ -1882,7 +1882,6 @@ int CmdHFiClassCheckKeys(const char *Cmd) {
|
|||
}
|
||||
fclose(f);
|
||||
PrintAndLog("Loaded %2d keys from %s", keycnt, filename);
|
||||
|
||||
|
||||
// time
|
||||
uint64_t t1 = msclock();
|
||||
|
|
Loading…
Reference in a new issue