This commit is contained in:
iceman1001 2019-12-03 14:52:17 +01:00
commit 9782f447eb
2 changed files with 3 additions and 3 deletions

View file

@ -11,7 +11,7 @@
#include "mifaredefault.h"
#include "commonutil.h" // ARRAYLEN
const char* g_mifare_plus_default_keys[] = {
const char *g_mifare_plus_default_keys[] = {
"ffffffffffffffffffffffffffffffff", // default key
"00000000000000000000000000000000",
"a0a1a2a3a4a5a6a7a0a1a2a3a4a5a6a7", // MAD key

View file

@ -44,7 +44,7 @@ static const uint8_t g_mifare_ndef_key[] = {0xd3, 0xf7, 0xd3, 0xf7, 0xd3, 0xf7};
static const uint8_t g_mifarep_mad_key[] = {0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa0, 0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7};
static const uint8_t g_mifarep_ndef_key[] = {0xd3, 0xf7, 0xd3, 0xf7, 0xd3, 0xf7, 0xd3, 0xf7, 0xd3, 0xf7, 0xd3, 0xf7, 0xd3, 0xf7, 0xd3, 0xf7};
extern const char* g_mifare_plus_default_keys[];
extern const char *g_mifare_plus_default_keys[];
extern size_t g_mifare_plus_default_keys_len;
#endif