X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/4888b2819574627efea9bd7d23444d785c5a2077..ad5bc8cc8c0a6573d6b2c7bc58bf94f7ab66ad4c:/client/cmdhfmf.h diff --git a/client/cmdhfmf.h b/client/cmdhfmf.h index 22dfd4de..738b3432 100644 --- a/client/cmdhfmf.h +++ b/client/cmdhfmf.h @@ -22,7 +22,10 @@ #include "cmdparser.h" #include "common.h" #include "util.h" -#include "mifarehost.h" +//#include "mifarehost.h" +#include "mifare.h" // nonces_t struct +#include "cmdhfmfhard.h" +#include "nonce2key/nonce2key.h" int CmdHFMF(const char *Cmd); @@ -38,8 +41,10 @@ int CmdHF14AMfUWrBl(const char* cmd); int CmdHF14AMfChk(const char* cmd); int CmdHF14AMifare(const char* cmd); int CmdHF14AMfNested(const char* cmd); +int CmdHF14AMfNestedHard(const char *Cmd); int CmdHF14AMfSniff(const char* cmd); int CmdHF14AMf1kSim(const char* cmd); +int CmdHF14AMfKeyBrute(const char *Cmd); int CmdHF14AMfEClear(const char* cmd); int CmdHF14AMfEGet(const char* cmd); int CmdHF14AMfESet(const char* cmd); @@ -53,5 +58,8 @@ int CmdHF14AMfCGetBlk(const char* cmd); int CmdHF14AMfCGetSc(const char* cmd); int CmdHF14AMfCLoad(const char* cmd); int CmdHF14AMfCSave(const char* cmd); +int CmdHf14MfDecryptBytes(const char *Cmd); +void readerAttack(nonces_t data[], bool setEmulatorMem); +void printKeyTable( uint8_t sectorscnt, sector *e_sector ); #endif