From 1cc22ba817c41e5c5b36d1b69c0ca1ccca48c2f5 Mon Sep 17 00:00:00 2001 From: Stefan `Sec` Zehl Date: Tue, 16 Aug 2011 11:19:34 +0200 Subject: [PATCH] Release camp-secret-keys to the world. Have fun. --- firmware/SECRETS.release | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 firmware/SECRETS.release diff --git a/firmware/SECRETS.release b/firmware/SECRETS.release new file mode 100644 index 0000000..84d2d01 --- /dev/null +++ b/firmware/SECRETS.release @@ -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