fix mf aes key length and typo in make help

This commit is contained in:
Philippe Teuwen 2025-04-20 11:20:14 +02:00
commit 49521078e5
4 changed files with 21 additions and 21 deletions

View file

@ -1806,7 +1806,7 @@ static void PacketReceived(PacketCommandNG *packet) {
struct p {
bool turn_off_field;
uint8_t keyno;
uint8_t key[18];
uint8_t key[16];
} PACKED;
struct p *payload = (struct p *) packet->data.asBytes;
MifareUL_AES_Auth(payload->turn_off_field, payload->keyno, payload->key);