]> git.zerfleddert.de Git - proxmark3-svn/blame - client/nonce2key/nonce2key.h
Code cleanup: deduplicate crapto1 library (#228)
[proxmark3-svn] / client / nonce2key / nonce2key.h
CommitLineData
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
f397b5cc
M
13#ifndef __NONCE2KEY_H
14#define __NONCE2KEY_H
15
33443e7c 16#include <stdint.h>
17#include <stdbool.h>
c872d8c1 18
19typedef 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;
26 uint32_t nonce2;
27 uint32_t ar2;
28 uint32_t nr2;
29 } nonces_t;
f89c7050 30
1c611bbd 31int nonce2key(uint32_t uid, uint32_t nt, uint32_t nr, uint64_t par_info, uint64_t ks_info, uint64_t * key);
c872d8c1 32bool mfkey32(nonces_t data, uint64_t *outputkey);
33bool tryMfk32_moebius(nonces_t data, uint64_t *outputkey);
34int tryMfk64_ex(uint8_t *data, uint64_t *outputkey);
35int tryMfk64(uint32_t uid, uint32_t nt, uint32_t nr_enc, uint32_t ar_enc, uint32_t at_enc, uint64_t *outputkey);
36
37//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);
f397b5cc
M
38
39#endif
Impressum, Datenschutz