]>
cvs.zerfleddert.de Git - proxmark3-svn/blob - client/mifare4.h
1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2018 Merlok
3 // Copyright (C) 2018 drHatson
5 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
6 // at your option, any later version. See the LICENSE.txt file for the text of
8 //-----------------------------------------------------------------------------
9 // iso14443-4 mifare commands
10 //-----------------------------------------------------------------------------
46 extern int CalculateMAC(mf4Session
*session
, MACType_t mtype
, uint8_t blockNum
, uint8_t blockCount
, uint8_t *data
, int datalen
, uint8_t *mac
, bool verbose
);
47 extern int MifareAuth4(mf4Session
*session
, uint8_t *keyn
, uint8_t *key
, bool activateField
, bool leaveSignalON
, bool verbose
);
49 extern char *mfGetAccessConditionsDesc(uint8_t blockn
, uint8_t *data
);
51 extern uint8_t mfNumBlocksPerSector(uint8_t sectorNo
);
52 extern uint8_t mfFirstBlockOfSector(uint8_t sectorNo
);
53 extern uint8_t mfSectorTrailer(uint8_t blockNo
);
54 extern bool mfIsSectorTrailer(uint8_t blockNo
);
55 extern uint8_t mfSectorNum(uint8_t blockNo
);