2018-10-17 03:50:18 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// 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.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// StandAlone Mod
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#ifndef __HF_BOG_H
|
|
|
|
#define __HF_BOG_H
|
|
|
|
|
|
|
|
#include "proxmark3.h"
|
|
|
|
#include "mifareutil.h"
|
|
|
|
#include "iso14443a.h"
|
|
|
|
#include "protocols.h"
|
|
|
|
#include "util.h"
|
|
|
|
#include "standalone.h" // standalone definitions
|
|
|
|
#include <stdbool.h> // for bool
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include "apps.h"
|
|
|
|
#include "printf.h"
|
|
|
|
#include "parity.h"
|
2019-04-07 17:00:28 +08:00
|
|
|
|
2018-10-17 03:50:18 +08:00
|
|
|
|
|
|
|
#endif /* __HF_BOG_H */
|