CHG: moved to header file

This commit is contained in:
iceman1001 2017-01-21 10:31:54 +01:00
parent 5e1de05ab0
commit 405944a0ac
2 changed files with 11 additions and 11 deletions

View file

@ -9,17 +9,7 @@
// Work with mifare cards.
//-----------------------------------------------------------------------------
#include "proxmark3.h"
#include "apps.h"
#include "util.h"
#include "string.h"
#include "iso14443crc.h"
#include "iso14443a.h"
#include "crapto1.h"
#include "mifareutil.h"
#include "parity.h"
#include "des.h"
int MF_DBGLEVEL = MF_DBG_ALL;

View file

@ -8,11 +8,21 @@
//-----------------------------------------------------------------------------
// code for work with mifare cards.
//-----------------------------------------------------------------------------
#include "crapto1.h"
#ifndef __MIFAREUTIL_H
#define __MIFAREUTIL_H
#include "proxmark3.h"
#include "apps.h"
#include "util.h"
#include "string.h"
#include "iso14443crc.h"
#include "iso14443a.h"
#include "crapto1.h"
#include "parity.h"
//#include "des.h"
// mifare authentication
#define CRYPT_NONE 0
#define CRYPT_ALL 1