Merge pull request #1331 from Guilhem7/master
[RRG-proxmark3.git] / armsrc / hitagS.h
blobf4efd70a661891d71cf7bb55de3bd82da7fb101b
1 //-----------------------------------------------------------------------------
2 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
3 // at your option, any later version. See the LICENSE.txt file for the text of
4 // the license.
5 //-----------------------------------------------------------------------------
6 // HitagS emulation (preliminary test version)
7 //
8 // (c) 2016 Oguzhan Cicek, Hendrik Schwartke, Ralf Spenneberg
9 // <info@os-s.de>
10 //-----------------------------------------------------------------------------
12 #ifndef _HITAGS_H_
13 #define _HITAGS_H_
15 #include "common.h"
17 #include "hitag.h"
19 void SimulateHitagSTag(bool tag_mem_supplied, uint8_t *data);
20 void ReadHitagS(hitag_function htf, hitag_data *htd);
21 void WritePageHitagS(hitag_function htf, hitag_data *htd, int page);
22 void check_challenges(bool file_given, uint8_t *data);
24 #endif