1
0
mirror of synced 2024-11-27 23:10:49 +01:00
bananatools/iccard/mifare.h

16 lines
203 B
C
Raw Normal View History

2023-09-18 10:00:09 +02:00
#pragma once
#include <stdint.h>
struct mifare_block {
uint8_t bytes[16];
};
struct mifare_sector {
struct mifare_block blocks[4];
};
struct mifare {
struct mifare_sector sectors[16];
};