]>
cvs.zerfleddert.de Git - proxmark3-svn/blob - armsrc/legicrf.h
   1 //----------------------------------------------------------------------------- 
   2 // (c) 2009 Henryk Plötz <henryk@ploetzli.ch> 
   4 // This code is licensed to you under the terms of the GNU GPL, version 2 or, 
   5 // at your option, any later version. See the LICENSE.txt file for the text of 
   7 //----------------------------------------------------------------------------- 
   8 // LEGIC RF emulation public interface 
   9 //----------------------------------------------------------------------------- 
  14 #include "proxmark3.h"  // 
  18 #include "legic_prng.h" // legic PRNG impl 
  19 #include "crc.h"                // legic crc-4 
  22 extern void LegicRfSimulate(int phase
, int frame
, int reqresp
); 
  23 extern int  LegicRfReader(int offset
, int bytes
, int iv
); 
  24 extern void LegicRfWriter(int offset
, int bytes
, int iv
); 
  25 extern void LegicRfRawWriter(int address
, int data
, int iv
); 
  27 int ice_legic_select_card(); 
  28 void ice_legic_setup(); 
  30 #endif /* __LEGICRF_H */