]>
Commit | Line | Data |
---|---|---|
f89c7050 M |
1 | //----------------------------------------------------------------------------- |
2 | // Merlok - June 2011 | |
3 | // Roel - Dec 2009 | |
4 | // Unknown author | |
5 | // | |
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 | ||
4cb4b588 | 13 | #ifndef MFKEY_H |
14 | #define MFKEY_H | |
f397b5cc | 15 | |
33443e7c | 16 | #include <stdint.h> |
17 | #include <stdbool.h> | |
c872d8c1 | 18 | |
19 | typedef struct { | |
20 | uint32_t cuid; | |
21 | uint8_t sector; | |
22 | uint8_t keytype; | |
23 | uint32_t nonce; | |
24 | uint32_t ar; | |
25 | uint32_t nr; | |
7779d73c | 26 | uint32_t at; |
c872d8c1 | 27 | uint32_t nonce2; |
28 | uint32_t ar2; | |
29 | uint32_t nr2; | |
30 | } nonces_t; | |
f89c7050 | 31 | |
4cb4b588 | 32 | extern bool mfkey32(nonces_t data, uint64_t *outputkey); |
33 | extern bool mfkey32_moebius(nonces_t data, uint64_t *outputkey); | |
34 | extern int mfkey64(nonces_t data, uint64_t *outputkey); | |
f397b5cc M |
35 | |
36 | #endif |