mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-10 17:49:32 +08:00
23 lines
796 B
C
23 lines
796 B
C
//-----------------------------------------------------------------------------
|
|
// (c) 2012 Roel Verdult
|
|
// modified 2021 Iceman
|
|
//
|
|
// 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.
|
|
//-----------------------------------------------------------------------------
|
|
// Hitag2 type prototyping
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef _HITAG2_H_
|
|
#define _HITAG2_H_
|
|
|
|
#include "common.h"
|
|
#include "hitag.h"
|
|
|
|
void SniffHitag2(void);
|
|
void SimulateHitag2(void);
|
|
void ReaderHitag(hitag_function htf, hitag_data *htd);
|
|
void WriterHitag(hitag_function htf, hitag_data *htd, int page);
|
|
void EloadHitag(uint8_t *data, uint16_t len);
|
|
#endif
|