style
[RRG-proxmark3.git] / client / src / cmdhfmfhard.h
blob6761626b2fdd4efb5d699beac5dab58e471db92c
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 //-----------------------------------------------------------------------------
11 #ifndef CMDHFMFHARD_H__
12 #define CMDHFMFHARD_H__
14 #include "common.h"
16 int 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, uint64_t *foundkey, char *filename);
17 void hardnested_print_progress(uint32_t nonces, const char *activity, float brute_force, uint64_t min_diff_print_time);
19 #endif