mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-10 17:49:32 +08:00
d19754567d
* .h include only the strict minimum for their own parsing * this forces all files to include explicitment their needs and not count on far streched dependencies * this helps Makefile to rebuild only the minimum * according to this rule, most standalone .h are now gone * big app.h is gone * remove seldom __cplusplus, if c++ happens, everything will have to be done properly anyway * all unrequired include were removed * split common/ into common/ (client+arm) and common_arm/ (os+bootloader) * bring zlib to common/ * bring stuff not really/not yet used in common back to armsrc/ or client/ * bring liblua into client/ * bring uart into client/ * move some portions of code around (dbprint, protocols,...) * rename unused files into *_disabled.[ch] to make it explicit * rename soft Uarts between 14a, 14b and iclass, so a standalone could use several without clash * remove PrintAndLogDevice * move deprecated-hid-flasher from client to tools * Makefiles * treat deps in armsrc/ as in client/ * client: stop on warning (-Werror), same as for armsrc/ Tested on: * all standalone modes * Linux
65 lines
2.4 KiB
C
65 lines
2.4 KiB
C
//-----------------------------------------------------------------------------
|
|
// Copyright (C) 2018 Merlok
|
|
// Copyright (C) 2018 drHatson
|
|
//
|
|
// This code is licensed to you under the terms of the GNU GPL, version 2 or,
|
|
// at your option, any later version. See the LICENSE.txt file for the text of
|
|
// the license.
|
|
//-----------------------------------------------------------------------------
|
|
// iso14443-4 mifare commands
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef MIFARE4_H
|
|
#define MIFARE4_H
|
|
|
|
#include "common.h"
|
|
|
|
typedef struct {
|
|
bool Authenticated;
|
|
uint8_t Key[16];
|
|
uint16_t KeyNum;
|
|
uint8_t RndA[16];
|
|
uint8_t RndB[16];
|
|
uint8_t TI[4];
|
|
uint8_t PICCap2[6];
|
|
uint8_t PCDCap2[6];
|
|
uint8_t Kenc[16];
|
|
uint8_t Kmac[16];
|
|
uint16_t R_Ctr;
|
|
uint16_t W_Ctr;
|
|
} mf4Session;
|
|
|
|
typedef enum {
|
|
mtypReadCmd,
|
|
mtypReadResp,
|
|
mtypWriteCmd,
|
|
mtypWriteResp,
|
|
} MACType_t;
|
|
|
|
typedef struct {
|
|
uint8_t cond;
|
|
const char *description;
|
|
} AccessConditions_t;
|
|
|
|
void mfpSetVerboseMode(bool verbose);
|
|
const char *mfpGetErrorDescription(uint8_t errorCode);
|
|
|
|
int CalculateMAC(mf4Session *session, MACType_t mtype, uint8_t blockNum, uint8_t blockCount, uint8_t *data, int datalen, uint8_t *mac, bool verbose);
|
|
int MifareAuth4(mf4Session *session, uint8_t *keyn, uint8_t *key, bool activateField, bool leaveSignalON, bool verbose);
|
|
|
|
int MFPWritePerso(uint8_t *keyNum, uint8_t *key, bool activateField, bool leaveSignalON, uint8_t *dataout, int maxdataoutlen, int *dataoutlen);
|
|
int MFPCommitPerso(bool activateField, bool leaveSignalON, uint8_t *dataout, int maxdataoutlen, int *dataoutlen);
|
|
int MFPReadBlock(mf4Session *session, bool plain, uint8_t blockNum, uint8_t blockCount, bool activateField, bool leaveSignalON, uint8_t *dataout, int maxdataoutlen, int *dataoutlen, uint8_t *mac);
|
|
int MFPWriteBlock(mf4Session *session, uint8_t blockNum, uint8_t *data, bool activateField, bool leaveSignalON, uint8_t *dataout, int maxdataoutlen, int *dataoutlen, uint8_t *mac);
|
|
int mfpReadSector(uint8_t sectorNo, uint8_t keyType, uint8_t *key, uint8_t *dataout, bool verbose);
|
|
|
|
const char *mfGetAccessConditionsDesc(uint8_t blockn, uint8_t *data);
|
|
|
|
uint8_t mfNumBlocksPerSector(uint8_t sectorNo);
|
|
uint8_t mfFirstBlockOfSector(uint8_t sectorNo);
|
|
uint8_t mfSectorTrailer(uint8_t blockNo);
|
|
bool mfIsSectorTrailer(uint8_t blockNo);
|
|
uint8_t mfSectorNum(uint8_t blockNo);
|
|
|
|
|
|
#endif // mifare4.h
|