mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-23 08:27:51 +08:00
enforce PACKED structs
This commit is contained in:
parent
662d3259ca
commit
6a55330398
1 changed files with 2 additions and 2 deletions
|
@ -46,12 +46,12 @@ typedef struct {
|
|||
uint8_t keyno;
|
||||
uint8_t keylen;
|
||||
uint8_t key[24];
|
||||
} mfdes_authinput_t;
|
||||
} PACKED mfdes_authinput_t;
|
||||
|
||||
typedef struct mfdes_auth_res {
|
||||
uint8_t sessionkeylen;
|
||||
uint8_t sessionkey[24];
|
||||
} mfdes_auth_res_t;
|
||||
} PACKED mfdes_auth_res_t;
|
||||
|
||||
typedef struct mfdes_data {
|
||||
uint8_t fileno; //01
|
||||
|
|
Loading…
Reference in a new issue