2011-08-05 01:18:43 +00:00
|
|
|
#ifndef _SECRETS_
|
|
|
|
#define _SECRETS_
|
|
|
|
|
2011-08-05 17:55:29 +00:00
|
|
|
#undef ENCRYPT_L0DABLE
|
|
|
|
|
2011-08-05 01:18:43 +00:00
|
|
|
static uint32_t const meshkey[4] = {
|
|
|
|
0x00000042, 0x000005ec, 0x00000023, 0x00000005
|
|
|
|
};
|
|
|
|
static const uint32_t openbeaconkey[4] = {
|
|
|
|
0xB4595344, 0xD3E119B6, 0xA814D0EC, 0xEFF5A24E
|
|
|
|
};
|
|
|
|
static uint32_t const remotekey[4] = {
|
|
|
|
0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff
|
|
|
|
};
|
2011-08-05 17:05:03 +00:00
|
|
|
static uint32_t const l0dable_sign_key[4] = {
|
|
|
|
0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff
|
|
|
|
};
|
|
|
|
static uint32_t const l0dable_crypt_key[4] = {
|
|
|
|
0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff
|
|
|
|
};
|
2011-08-05 01:18:43 +00:00
|
|
|
|
|
|
|
#endif
|