2015-11-23 00:33:41 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
2022-01-07 08:58:03 +08:00
|
|
|
// Copyright (C) Proxmark3 contributors. See AUTHORS.md for details.
|
2015-11-23 00:33:41 +08:00
|
|
|
//
|
2022-01-07 08:58:03 +08:00
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// See LICENSE.txt for the text of the license.
|
2015-11-23 00:33:41 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
2017-07-14 22:20:34 +08:00
|
|
|
// Low frequency viking tag commands
|
2015-11-23 00:33:41 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
2015-10-05 00:01:33 +08:00
|
|
|
#ifndef CMDLFVIKING_H__
|
|
|
|
#define CMDLFVIKING_H__
|
2019-08-08 22:57:33 +08:00
|
|
|
|
|
|
|
#include "common.h"
|
2017-07-30 15:17:48 +08:00
|
|
|
|
2019-04-06 06:38:22 +08:00
|
|
|
int CmdLFViking(const char *Cmd);
|
2017-07-30 15:17:48 +08:00
|
|
|
|
2020-09-28 17:50:20 +08:00
|
|
|
int demodViking(bool verbose);
|
2019-06-08 03:26:03 +08:00
|
|
|
int detectViking(uint8_t *src, size_t *size);
|
2019-04-12 06:38:54 +08:00
|
|
|
uint64_t getVikingBits(uint32_t id);
|
2017-07-30 15:17:48 +08:00
|
|
|
|
2015-10-05 00:01:33 +08:00
|
|
|
#endif
|
|
|
|
|