1
0
mirror of synced 2025-02-12 09:03:02 +01:00
bananatools/iccard/mifare.h

16 lines
203 B
C
Raw Normal View History

2023-09-18 04:00:09 -04: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];
};