mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 13:23:51 -07:00
wrong includes
This commit is contained in:
parent
493a26b93a
commit
98d8405830
4 changed files with 25 additions and 20 deletions
|
@ -7,23 +7,7 @@
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
// High frequency MIFARE Desfire commands
|
// High frequency MIFARE Desfire commands
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <string.h>
|
|
||||||
#include <ctype.h>
|
|
||||||
#include "des.h"
|
|
||||||
#include "cmdmain.h"
|
|
||||||
#include "proxmark3.h"
|
|
||||||
#include "../include/common.h"
|
|
||||||
#include "../include/mifare.h"
|
|
||||||
#include "iso14443crc.h"
|
|
||||||
#include "ui.h"
|
|
||||||
#include "cmdparser.h"
|
|
||||||
#include "util.h"
|
|
||||||
#include "cmdhfmfdes.h"
|
#include "cmdhfmfdes.h"
|
||||||
#include "cmdhf14a.h"
|
|
||||||
|
|
||||||
|
|
||||||
uint8_t CMDPOS = 0;
|
uint8_t CMDPOS = 0;
|
||||||
uint8_t LENPOS = 1;
|
uint8_t LENPOS = 1;
|
||||||
|
|
|
@ -10,6 +10,21 @@
|
||||||
#ifndef __MFDESFIRE_H
|
#ifndef __MFDESFIRE_H
|
||||||
#define __MFDESFIRE_H
|
#define __MFDESFIRE_H
|
||||||
|
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
|
#include <ctype.h>
|
||||||
|
#include "cmdmain.h"
|
||||||
|
#include "proxmark3.h"
|
||||||
|
#include "../include/common.h"
|
||||||
|
#include "../include/mifare.h"
|
||||||
|
#include "iso14443crc.h"
|
||||||
|
#include "ui.h"
|
||||||
|
#include "cmdparser.h"
|
||||||
|
#include "util.h"
|
||||||
|
#include "cmdhf14a.h"
|
||||||
|
#include "mbedtls/des.h"
|
||||||
|
|
||||||
int CmdHFMFDes(const char *Cmd);
|
int CmdHFMFDes(const char *Cmd);
|
||||||
int CmdHF14ADesAuth(const char *Cmd);
|
int CmdHF14ADesAuth(const char *Cmd);
|
||||||
int CmdHF14ADesRb(const char *Cmd);
|
int CmdHF14ADesRb(const char *Cmd);
|
||||||
|
|
|
@ -8,10 +8,7 @@
|
||||||
// High frequency MIFARE commands
|
// High frequency MIFARE commands
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
|
|
||||||
#include "cmdhfmf.h"
|
#include "cmdhfmfdesfire.h"
|
||||||
#include "util.h"
|
|
||||||
#include <openssl/des.h>
|
|
||||||
#include <openssl/aes.h>
|
|
||||||
|
|
||||||
static int CmdHelp(const char *Cmd);
|
static int CmdHelp(const char *Cmd);
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,13 @@
|
||||||
|
#ifndef __MFDESFIRE_AD_H
|
||||||
|
#define __MFDESFIRE_AD_H
|
||||||
|
|
||||||
|
#include "cmdhfmf.h"
|
||||||
|
#include "util.h"
|
||||||
|
#include "mbedtls/des.h"
|
||||||
|
#include "mbedtls/aes.h"
|
||||||
|
|
||||||
int CmdHF14AMfDESAuth(const char *Cmd);
|
int CmdHF14AMfDESAuth(const char *Cmd);
|
||||||
int CmdHFMFDesfire(const char *Cmd);
|
int CmdHFMFDesfire(const char *Cmd);
|
||||||
int CmdHelp(const char *Cmd);
|
int CmdHelp(const char *Cmd);
|
||||||
|
|
||||||
|
#endif
|
Loading…
Add table
Add a link
Reference in a new issue