mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-14 18:47:24 -07:00
improved version of "hf 14a mifare" command
with merge with utility nonce2key
This commit is contained in:
parent
4abe4f5867
commit
f89c705002
14 changed files with 1155 additions and 106 deletions
|
@ -2,6 +2,8 @@
|
|||
#define __ISO14443A_H
|
||||
#include "common.h"
|
||||
|
||||
typedef struct nestedVector { uint32_t nt, ks1; } nestedVector;
|
||||
|
||||
extern byte_t oddparity (const byte_t bt);
|
||||
extern uint32_t GetParity(const uint8_t * pbtCmd, int iLen);
|
||||
extern void AppendCrc14443a(uint8_t* data, int len);
|
||||
|
@ -10,6 +12,7 @@ extern void ReaderTransmitShort(const uint8_t* bt);
|
|||
extern void ReaderTransmit(uint8_t* frame, int len);
|
||||
extern void ReaderTransmitPar(uint8_t* frame, int len, uint32_t par);
|
||||
extern int ReaderReceive(uint8_t* receivedAnswer);
|
||||
extern int ReaderReceivePar(uint8_t* receivedAnswer, uint32_t * parptr);
|
||||
|
||||
extern void iso14443a_setup();
|
||||
extern int iso14443a_select_card(uint8_t * uid_ptr, iso14a_card_select_t * resp_data, uint32_t * cuid_ptr);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue