2011-06-10 21:35:10 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Copyright (C) 2011 Merlok
|
|
|
|
//
|
|
|
|
// 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 MIFARE commands
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#ifndef CMDHFMF_H__
|
|
|
|
#define CMDHFMF_H__
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <ctype.h>
|
2011-06-18 02:39:54 +08:00
|
|
|
#include "proxmark3.h"
|
2011-06-10 21:35:10 +08:00
|
|
|
#include "iso14443crc.h"
|
|
|
|
#include "data.h"
|
2013-02-28 23:11:52 +08:00
|
|
|
//#include "proxusb.h"
|
2011-06-10 21:35:10 +08:00
|
|
|
#include "ui.h"
|
|
|
|
#include "cmdparser.h"
|
|
|
|
#include "common.h"
|
|
|
|
#include "util.h"
|
|
|
|
#include "mifarehost.h"
|
|
|
|
|
|
|
|
int CmdHFMF(const char *Cmd);
|
|
|
|
|
|
|
|
#endif
|