]> git.zerfleddert.de Git - proxmark3-svn/blame - client/cmdhf14a.h
Merge pull request #494 from qaisjp/patch-1
[proxmark3-svn] / client / cmdhf14a.h
CommitLineData
a553f267 1//-----------------------------------------------------------------------------
50193c1e 2// 2011, Merlok
a553f267 3// Copyright (C) 2010 iZsh <izsh at fail0verflow.com>
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// High frequency ISO14443A commands
10//-----------------------------------------------------------------------------
11
7fe9b0b7 12#ifndef CMDHF14A_H__
13#define CMDHF14A_H__
14
acf0582d 15#include <stdint.h>
eb6e8de4 16#include <stdbool.h>
7fe9b0b7 17
a23f0001 18// structure and database for uid -> tagtype lookups
19typedef struct {
20 uint8_t uid;
21 char* desc;
22} manufactureName;
23
acf0582d 24int CmdHF14A(const char *Cmd);
7fe9b0b7 25int CmdHF14AList(const char *Cmd);
26int CmdHF14AMifare(const char *Cmd);
27int CmdHF14AReader(const char *Cmd);
fe842bed 28extern int CmdHF14AInfo(const char *Cmd);
7fe9b0b7 29int CmdHF14ASim(const char *Cmd);
30int CmdHF14ASnoop(const char *Cmd);
b915fda3 31char* getTagInfo(uint8_t uid);
acf0582d 32
b7d3e899 33extern void DropField();
3c5fce2b 34extern int ExchangeAPDU14a(uint8_t *datain, int datainlen, bool activateField, bool leaveSignalON, uint8_t *dataout, int maxdataoutlen, int *dataoutlen);
6fc6cd0f 35
7fe9b0b7 36#endif
Impressum, Datenschutz