mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 13:53:55 -07:00
Merge branch 'master' into allin
update 201031
This commit is contained in:
commit
d977902fd8
52 changed files with 1959206 additions and 276 deletions
|
@ -94,6 +94,11 @@ typedef enum {
|
|||
MFDES_ALGO_AES = 4
|
||||
} mifare_des_authalgo_t;
|
||||
|
||||
typedef enum {
|
||||
MFDES_KDF_ALGO_NONE = 0,
|
||||
MFDES_KDF_ALGO_AN10922 = 1,
|
||||
} mifare_des_kdf_algo_t;
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
// "hf 14a sim x", "hf mf sim x" attacks
|
||||
//-----------------------------------------------------------------------------
|
||||
|
|
|
@ -802,6 +802,9 @@ typedef struct {
|
|||
// tearoff occured client/pm3: when a tearoff hook was called and a tearoff actually happened
|
||||
#define PM3_ETEAROFF -23
|
||||
|
||||
// Got bad CRC client/pm3: error in transfer of data, crc mismatch.
|
||||
#define PM3_ECRC -24
|
||||
|
||||
// No data pm3: no data available, no host frame available (not really an error)
|
||||
#define PM3_ENODATA -98
|
||||
// Quit program client: reserved, order to quit the program
|
||||
|
|
|
@ -566,6 +566,8 @@ ISO 7816-4 Basic interindustry commands. For command APDU's.
|
|||
#define EM4x05_READ_AFTER_WRITE (1 << 22)
|
||||
#define EM4x05_DISABLE_ALLOWED (1 << 23)
|
||||
#define EM4x05_READER_TALK_FIRST (1 << 24)
|
||||
#define EM4x05_INVERT (1 << 25)
|
||||
#define EM4x05_PIGEON (1 << 26)
|
||||
|
||||
|
||||
// FeliCa protocol
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue