18 lines
417 B
Plaintext
18 lines
417 B
Plaintext
|
#ifndef _SECRETS_
|
|||
|
#define _SECRETS_
|
|||
|
|
|||
|
// these keys are not the official keys
|
|||
|
// they´re just here to make the simulat0r build
|
|||
|
|
|||
|
static uint32_t const meshkey[4] = {
|
|||
|
0x01010101, 0x02020202, 0x03030303, 0x04040404
|
|||
|
};
|
|||
|
static const uint32_t openbeaconkey[4] = {
|
|||
|
0x05050505, 0x06060606, 0x07070707, 0x08080808
|
|||
|
};
|
|||
|
static uint32_t const remotekey[4] = {
|
|||
|
0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff
|
|||
|
};
|
|||
|
|
|||
|
#endif
|