text
[RRG-proxmark3.git] / armsrc / hitag2.h
blobef92f0560f14c6c9e604f3305c6ac69cbdeab5b8
1 //-----------------------------------------------------------------------------
2 // (c) 2012 Roel Verdult
3 // modified 2021 Iceman
4 //
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
7 // the license.
8 //-----------------------------------------------------------------------------
9 // Hitag2 type prototyping
10 //-----------------------------------------------------------------------------
12 #ifndef _HITAG2_H_
13 #define _HITAG2_H_
15 #include "common.h"
16 #include "hitag.h"
18 void SniffHitag2(void);
19 void SimulateHitag2(void);
20 void ReaderHitag(hitag_function htf, hitag_data *htd);
21 void WriterHitag(hitag_function htf, hitag_data *htd, int page);
22 void EloadHitag(uint8_t *data, uint16_t len);
23 #endif