]> git.zerfleddert.de Git - proxmark3-svn/blame - client/cmdhfmfhard.h
CHG: "hf mf hardnested" - less printing
[proxmark3-svn] / client / cmdhfmfhard.h
CommitLineData
8ce3e4b4 1//-----------------------------------------------------------------------------
2// Copyright (C) 2015 piwi
3//
4// This code is licensed to you under the terms of the GNU GPL, version 2 or,
5// at your option, any later version. See the LICENSE.txt file for the text of
6// the license.
7//-----------------------------------------------------------------------------
8// hf mf hardnested command
9//-----------------------------------------------------------------------------
10
2dcf60f3 11#ifndef CMDHFMFHARD_H__
12#define CMDHFMFHARD_H__
13
14#include "sleep.h"
15#include <stdlib.h>
16#include <stdio.h>
17#include <string.h>
18#include <pthread.h>
19#include <locale.h>
20#include <math.h>
21#include "proxmark3.h"
22#include "cmdmain.h"
23#include "ui.h"
24#include "util.h"
25#include "nonce2key/crapto1.h"
26#include "nonce2key/crypto1_bs.h"
27#include "parity.h"
28#ifdef __WIN32
29 #include <windows.h>
30#endif
31// don't include for APPLE/mac which has malloc stuff elsewhere.
32#ifndef __APPLE__
33 #include <malloc.h>
34#endif
35#include <assert.h>
36
0d5ee8e2 37int mfnestedhard(uint8_t blockNo, uint8_t keyType, uint8_t *key, uint8_t trgBlockNo, uint8_t trgKeyType, uint8_t *trgkey, bool nonce_file_read, bool nonce_file_write, bool slow, int tests);
2dcf60f3 38
39#endif
Impressum, Datenschutz