]>
Commit | Line | Data |
---|---|---|
f89c7050 M |
1 | //----------------------------------------------------------------------------- |
2 | // Merlok - June 2011 | |
3 | // Roel - Dec 2009 | |
4 | // Unknown author | |
cd91e41c | 5 | // iceman - may 2015 |
f89c7050 M |
6 | // This code is licensed to you under the terms of the GNU GPL, version 2 or, |
7 | // at your option, any later version. See the LICENSE.txt file for the text of | |
8 | // the license. | |
9 | //----------------------------------------------------------------------------- | |
10 | // MIFARE Darkside hack | |
11 | //----------------------------------------------------------------------------- | |
12 | ||
f397b5cc M |
13 | #ifndef __NONCE2KEY_H |
14 | #define __NONCE2KEY_H | |
15 | ||
f89c7050 | 16 | #include <stdio.h> |
bfaecce6 | 17 | #include <stdlib.h> |
f397b5cc | 18 | #include "crapto1.h" |
db09cb3a | 19 | #include "common.h" |
f89c7050 | 20 | |
1c611bbd | 21 | int nonce2key(uint32_t uid, uint32_t nt, uint32_t nr, uint64_t par_info, uint64_t ks_info, uint64_t * key); |
cd91e41c | 22 | |
23 | int nonce2key_ex(uint32_t uid, uint32_t nt, uint32_t nr, uint64_t ks_info, uint64_t * key); | |
24 | ||
25 | //iceman, added these to be able to crack key direct from "hf 14 sim" && "hf mf sim" | |
26 | int tryMfk32(uint8_t *data, uint64_t *outputkey ); | |
27 | int tryMfk32_moebius(uint8_t *data, uint64_t *outputkey ); // <<-- this one has best success | |
28 | int tryMfk64_ex(uint8_t *data, uint64_t *outputkey ); | |
29 | int tryMfk64(uint32_t uid, uint32_t nt, uint32_t nr_enc, uint32_t ar_enc, uint32_t at_enc, uint64_t *outputkey); | |
f397b5cc | 30 | #endif |