]> git.zerfleddert.de Git - proxmark3-svn/blame - client/cmdhflist.h
added check reader/tag
[proxmark3-svn] / client / cmdhflist.h
CommitLineData
4f131b53 1//-----------------------------------------------------------------------------
2// Copyright (C) Merlok - 2017
3//
4// This code is licensed to you under the terms of the GNU GPL, version 2 or,
5// at your option, any later version. See the LICENSE.txt file for the text of
6// the license.
7//-----------------------------------------------------------------------------
8// Command: hf mf list. It shows data from arm buffer.
9//-----------------------------------------------------------------------------
6612a5a2 10#ifndef CMDHFLIST_H
11#define CMDHFLIST_H
4f131b53 12
6612a5a2 13#include <stdlib.h>
14#include <stdint.h>
15#include <stdbool.h>
4f131b53 16
6612a5a2 17extern uint8_t iso14443A_CRC_check(bool isResponse, uint8_t* data, uint8_t len);
18extern uint8_t mifare_CRC_check(bool isResponse, uint8_t* data, uint8_t len);
19extern void annotateIso14443a(char *exp, size_t size, uint8_t* cmd, uint8_t cmdsize);
20extern void annotateMifare(char *exp, size_t size, uint8_t* cmd, uint8_t cmdsize, bool isResponse);
21
22
23#endif // CMDHFLIST
Impressum, Datenschutz