Merge pull request #969 from pwpiwi/gcc10_fixes
[legacy-proxmark3.git] / client / mifare / mfkey.h
blobbe32fe1bd890a8c9bd827907b0cf74e28f940a00
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 //-----------------------------------------------------------------------------
13 #ifndef MFKEY_H
14 #define MFKEY_H
16 #include <stdint.h>
17 #include <stdbool.h>
18 #include "mifare.h"
20 extern bool mfkey32(nonces_t data, uint64_t *outputkey);
21 extern bool mfkey32_moebius(nonces_t data, uint64_t *outputkey);
22 extern int mfkey64(nonces_t data, uint64_t *outputkey);
24 #endif