textual
[RRG-proxmark3.git] / client / src / cmdlfguard.h
blob132b45853b1f6f9ab501c4a7732d10a50d1d8110
1 //-----------------------------------------------------------------------------
2 //
3 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
4 // at your option, any later version. See the LICENSE.txt file for the text of
5 // the license.
6 //-----------------------------------------------------------------------------
7 // Low frequency G Prox II tag commands
8 //-----------------------------------------------------------------------------
9 #ifndef CMDLFGUARD_H__
10 #define CMDLFGUARD_H__
12 #include "common.h"
14 int CmdLFGuard(const char *Cmd);
15 int detectGProxII(uint8_t *bits, size_t *size);
16 int demodGuard(bool verbose);
17 int getGuardBits(uint8_t fmtlen, uint32_t fc, uint32_t cn, uint8_t *guardBits);
18 #endif