X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/7fe9b0b742d7dae9c5af1d292d11840b5c3cbfae..7527c2bdd821ac194ed362f327b5e6b7aef7d1bb:/client/cmdlfhid.h diff --git a/client/cmdlfhid.h b/client/cmdlfhid.h index 7747fd28..353805db 100644 --- a/client/cmdlfhid.h +++ b/client/cmdlfhid.h @@ -1,10 +1,27 @@ +//----------------------------------------------------------------------------- +// Copyright (C) 2010 iZsh +// +// 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. +//----------------------------------------------------------------------------- +// Low frequency HID commands +//----------------------------------------------------------------------------- + #ifndef CMDLFHID_H__ #define CMDLFHID_H__ -int CmdLFHID(const char *Cmd); +#include +#include -int CmdHIDDemod(const char *Cmd); -int CmdHIDDemodFSK(const char *Cmd); +int CmdLFHID(const char *Cmd); +int CmdFSKdemodHID(const char *Cmd); +int CmdHIDReadDemod(const char *Cmd); int CmdHIDSim(const char *Cmd); - +int CmdHIDClone(const char *Cmd); +int CmdHIDDecode(const char *Cmd); +int CmdHIDEncode(const char *Cmd); +int CmdHIDWrite(const char *Cmd); +// This is used by the Paradox code +int hid_hexstring_to_int96(/* out */ uint32_t* hi2,/* out */ uint32_t* hi, /* out */ uint32_t* lo, const char* str); #endif