| 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 | |
| 13 | #ifndef __NONCE2KEY_H |
| 14 | #define __NONCE2KEY_H |
| 15 | |
| 16 | #include <stdio.h> |
| 17 | #include <stdlib.h> |
| 18 | #include "crapto1.h" |
| 19 | #include "common.h" |
| 20 | //#include <stdbool.h> //for bool |
| 21 | |
| 22 | typedef struct { |
| 23 | uint32_t cuid; |
| 24 | uint8_t sector; |
| 25 | uint8_t keytype; |
| 26 | uint32_t nonce; |
| 27 | uint32_t ar; |
| 28 | uint32_t nr; |
| 29 | uint32_t nonce2; |
| 30 | uint32_t ar2; |
| 31 | uint32_t nr2; |
| 32 | } nonces_t; |
| 33 | |
| 34 | int nonce2key(uint32_t uid, uint32_t nt, uint32_t nr, uint64_t par_info, uint64_t ks_info, uint64_t * key); |
| 35 | bool mfkey32(nonces_t data, uint64_t *outputkey); |
| 36 | bool tryMfk32_moebius(nonces_t data, uint64_t *outputkey); |
| 37 | int tryMfk64_ex(uint8_t *data, uint64_t *outputkey); |
| 38 | int tryMfk64(uint32_t uid, uint32_t nt, uint32_t nr_enc, uint32_t ar_enc, uint32_t at_enc, uint64_t *outputkey); |
| 39 | |
| 40 | //uint64_t mfkey32(uint32_t uid, uint32_t nt, uint32_t nr0_enc, uint32_t ar0_enc, uint32_t nr1_enc, uint32_t ar1_enc); |
| 41 | |
| 42 | #endif |