2011-05-18 12:33:32 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Copyright (C) 2010 iZsh <izsh at fail0verflow.com>
|
|
|
|
// Copyright (C) 2011 Gerhard de Koning Gans
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// High frequency iClass support
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef CMDHFICLASS_H__
|
|
|
|
#define CMDHFICLASS_H__
|
|
|
|
|
2017-01-10 18:23:05 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/stat.h>
|
2019-04-09 10:12:15 +02:00
|
|
|
//#include "iso14443crc.h" // Can also be used for iClass, using 0xE012 as CRC-type
|
2017-01-10 18:23:05 +01:00
|
|
|
#include "proxmark3.h"
|
|
|
|
#include "ui.h"
|
|
|
|
#include "cmdparser.h"
|
|
|
|
#include "common.h"
|
|
|
|
#include "util.h"
|
2018-09-06 21:43:20 +02:00
|
|
|
#include "comms.h"
|
2018-11-14 11:33:45 +02:00
|
|
|
#include "mbedtls/des.h"
|
2017-01-10 18:23:05 +01:00
|
|
|
#include "loclass/cipherutils.h"
|
|
|
|
#include "loclass/cipher.h"
|
|
|
|
#include "loclass/ikeys.h"
|
|
|
|
#include "loclass/elite_crack.h"
|
|
|
|
#include "loclass/fileutils.h"
|
|
|
|
#include "protocols.h"
|
2019-04-30 21:10:11 +02:00
|
|
|
#include "pm3_cmd.h"
|
2017-01-10 18:23:05 +01:00
|
|
|
#include "cmdhfmfu.h"
|
|
|
|
#include "cmdhf.h"
|
2019-03-09 23:35:06 +01:00
|
|
|
#include "protocols.h" // picopass structs,
|
2017-07-07 12:38:49 +02:00
|
|
|
#include "usb_cdc.h" // for usb_poll_validate_length
|
2017-01-10 18:23:05 +01:00
|
|
|
|
2017-12-24 10:59:24 +01:00
|
|
|
|
|
|
|
|
|
|
|
typedef struct iclass_block {
|
|
|
|
uint8_t d[8];
|
|
|
|
} iclass_block_t;
|
|
|
|
|
2018-01-02 11:17:31 +01:00
|
|
|
typedef struct iclass_premac {
|
2019-03-09 23:35:06 +01:00
|
|
|
uint8_t mac[4];
|
2018-01-02 11:17:31 +01:00
|
|
|
} iclass_premac_t;
|
|
|
|
|
|
|
|
typedef struct iclass_prekey {
|
2019-03-09 23:35:06 +01:00
|
|
|
uint8_t mac[4];
|
|
|
|
uint8_t key[8];
|
2018-01-02 11:17:31 +01:00
|
|
|
} iclass_prekey_t;
|
2017-12-24 10:59:24 +01:00
|
|
|
|
2011-05-18 12:33:32 +00:00
|
|
|
int CmdHFiClass(const char *Cmd);
|
|
|
|
|
2019-04-12 18:41:14 +02:00
|
|
|
int readIclass(bool loop, bool verbose);
|
2015-10-07 23:00:46 +02:00
|
|
|
void printIclassDumpContents(uint8_t *iclass_dump, uint8_t startblock, uint8_t endblock, size_t filesize);
|
2019-03-09 23:35:06 +01:00
|
|
|
void HFiClassCalcDivKey(uint8_t *CSN, uint8_t *KEY, uint8_t *div_key, bool elite);
|
2018-01-02 11:17:31 +01:00
|
|
|
|
2019-03-10 00:00:59 +01:00
|
|
|
int LoadDictionaryKeyFile(char *filename, uint8_t **keys, int *keycnt);
|
|
|
|
int GenerateMacFromKeyFile(uint8_t *CSN, uint8_t *CCNR, bool use_raw, bool use_elite, uint8_t *keys, int keycnt, iclass_premac_t *list);
|
|
|
|
int GenerateFromKeyFile(uint8_t *CSN, uint8_t *CCNR, bool use_raw, bool use_elite, uint8_t *keys, int keycnt, iclass_prekey_t *list);
|
|
|
|
void PrintPreCalcMac(uint8_t *keys, int keycnt, iclass_premac_t *pre_list);
|
|
|
|
void PrintPreCalc(iclass_prekey_t *list, int itemcnt);
|
2011-05-18 12:33:32 +00:00
|
|
|
#endif
|