proxmark3/client/cmdcrc.h

21 lines
851 B
C
Raw Normal View History

//-----------------------------------------------------------------------------
// Copyright (C) 2015 iceman <iceman at iuse.se>
//
// 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.
//-----------------------------------------------------------------------------
// CRC Calculations from the software reveng commands
//-----------------------------------------------------------------------------
#ifndef CMDCRC_H__
#define CMDCRC_H__
int CmdCrc(const char *Cmd);
2015-06-09 00:25:50 +08:00
int CmdrevengTest(const char *Cmd);
2015-06-09 09:22:18 +08:00
int CmdrevengTestC(const char *Cmd);
int CmdrevengSearch(const char *Cmd);
int GetModels(char *Models[], int *count, uint8_t *width);
2015-06-09 11:14:11 +08:00
int RunModel(char *inModel, char *inHexStr, bool reverse, char endian, char *result);
#endif