]> git.zerfleddert.de Git - proxmark3-svn/blame_incremental - client/cmdhf14a.h
fix rare bug in tlv.c (#788)
[proxmark3-svn] / client / cmdhf14a.h
... / ...
CommitLineData
1//-----------------------------------------------------------------------------
2// 2011, Merlok
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
12#ifndef CMDHF14A_H__
13#define CMDHF14A_H__
14
15#include <stdint.h>
16#include <stdbool.h>
17#include "mifare.h"
18
19int CmdHF14A(const char *Cmd);
20int CmdHF14AList(const char *Cmd);
21int CmdHF14AMifare(const char *Cmd);
22int CmdHF14AReader(const char *Cmd);
23extern int CmdHF14AInfo(const char *Cmd);
24int CmdHF14ASim(const char *Cmd);
25int CmdHF14ASnoop(const char *Cmd);
26char* getTagInfo(uint8_t uid);
27
28extern void DropField();
29
30extern int Hf14443_4aGetCardData(iso14a_card_select_t * card);
31extern int ExchangeRAW14a(uint8_t *datain, int datainlen, bool activateField, bool leaveSignalON, uint8_t *dataout, int maxdataoutlen, int *dataoutlen);
32extern int ExchangeAPDU14a(uint8_t *datain, int datainlen, bool activateField, bool leaveSignalON, uint8_t *dataout, int maxdataoutlen, int *dataoutlen);
33
34#endif
Impressum, Datenschutz