Merge branch 'master' of github.com:r0ket/r0ket

This commit is contained in:
schneider 2011-08-17 22:42:15 +02:00
commit 0cc052a12a
1 changed files with 22 additions and 0 deletions

22
firmware/SECRETS.release Normal file
View File

@ -0,0 +1,22 @@
#ifndef _SECRETS_
#define _SECRETS_
#define ENCRYPT_L0DABLE 1
static uint32_t const meshkey[4] = {
0xafbbcb26, 0x39108427, 0x455ef5e5, 0x51b482d2
};
static const uint32_t openbeaconkey[4] = {
0x8fbd6984, 0x613ea3c8, 0x3e9795a2, 0xa843c61d
};
static uint32_t const remotekey[4] = {
0xffffffff, 0xffffffff, 0xffffffff, 0xffffffff
};
static uint32_t const l0dable_sign_key[4] = {
0x7882fbcd, 0x69f85948, 0xc6861150, 0x383bf9d5
};
static uint32_t const l0dable_crypt_key[4] = {
0x303e5fab, 0x1240acc9, 0xf8496f21, 0x361fd856
};
#endif