mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-08-14 02:26:59 -07:00
moved some functions and added auth sequence annotation
This commit is contained in:
parent
4f131b53ea
commit
6612a5a201
3 changed files with 213 additions and 121 deletions
|
@ -7,5 +7,17 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
// Command: hf mf list. It shows data from arm buffer.
|
||||
//-----------------------------------------------------------------------------
|
||||
#ifndef CMDHFLIST_H
|
||||
#define CMDHFLIST_H
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <stdint.h>
|
||||
#include <stdbool.h>
|
||||
|
||||
extern uint8_t iso14443A_CRC_check(bool isResponse, uint8_t* data, uint8_t len);
|
||||
extern uint8_t mifare_CRC_check(bool isResponse, uint8_t* data, uint8_t len);
|
||||
extern void annotateIso14443a(char *exp, size_t size, uint8_t* cmd, uint8_t cmdsize);
|
||||
extern void annotateMifare(char *exp, size_t size, uint8_t* cmd, uint8_t cmdsize, bool isResponse);
|
||||
|
||||
|
||||
#endif // CMDHFLIST
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue