]>
cvs.zerfleddert.de Git - proxmark3-svn/blob - client/cmdhf14a.h
0b58a55ada4edd53dfa34279f564ade19fd3125e
   1 //----------------------------------------------------------------------------- 
   3 // Copyright (C) 2010 iZsh <izsh at fail0verflow.com> 
   5 // This code is licensed to you under the terms of the GNU GPL, version 2 or, 
   6 // at your option, any later version. See the LICENSE.txt file for the text of 
   8 //----------------------------------------------------------------------------- 
   9 // High frequency ISO14443A commands 
  10 //----------------------------------------------------------------------------- 
  22 #include "util_posix.h" 
  23 #include "iso14443crc.h" 
  25 #include "proxmark3.h" 
  27 #include "cmdparser.h" 
  32 #include "mifarehost.h" 
  34 int CmdHF14A(const char *Cmd
); 
  35 int CmdHF14AList(const char *Cmd
); 
  36 int CmdHF14AMifare(const char *Cmd
); 
  37 int CmdHF14AReader(const char *Cmd
); 
  38 int CmdHF14ASim(const char *Cmd
); 
  39 int CmdHF14ASnoop(const char *Cmd
); 
  40 char* getTagInfo(uint8_t uid
); 
  42 extern int ExchangeAPDU14a(uint8_t *datain
, int datainlen
, bool activateField
, bool leaveSignalON
, uint8_t *dataout
, int *dataoutlen
);