mirror of
https://github.com/Proxmark/proxmark3.git
synced 2024-11-11 18:17:46 +08:00
81740aa519
ADD: script remagic.lua -- a script to make a "dead" Mifare s50 generation 1 alive again. ADD: tracetest.lua - This script will load several traces files in ../traces/ folder and do "data load" "lf search" ADD: test_t55x7_psk.lua - iterates thru a lot of calls to check the new psk demods. all new scripts implements the "-h" for help text.
19 lines
451 B
C
19 lines
451 B
C
#include "cmdhfmf.h"
|
|
#include "cmdhf14a.h"
|
|
|
|
//standard ultralight
|
|
int CmdHF14AMfUWrBl(const char *Cmd);
|
|
int CmdHF14AMfURdBl(const char *Cmd);
|
|
|
|
//Crypto Cards
|
|
int CmdHF14AMfUCRdBl(const char *Cmd);
|
|
int CmdHF14AMfUCRdCard(const char *Cmd);
|
|
int CmdHF14AMfucAuth(const char *Cmd);
|
|
|
|
//general stuff
|
|
int CmdHF14AMfUDump(const char *Cmd);
|
|
void rol (uint8_t *data, const size_t len);
|
|
|
|
|
|
int CmdHFMFUltra(const char *Cmd);
|
|
int CmdHF14AMfUInfo(const char *Cmd);
|