From 2428ca09fcab7b681660ec7d6bca3827adce8d8b Mon Sep 17 00:00:00 2001 From: Jm Casler Date: Mon, 14 Feb 2022 18:06:05 -0800 Subject: [PATCH] Change the default pre shared key to break backward compatibility of default channel --- src/mesh/Channels.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesh/Channels.cpp b/src/mesh/Channels.cpp index d757fdb33..33bcbcdce 100644 --- a/src/mesh/Channels.cpp +++ b/src/mesh/Channels.cpp @@ -7,7 +7,7 @@ /// 16 bytes of random PSK for our _public_ default channel that all devices power up on (AES128) static const uint8_t defaultpsk[] = {0xd4, 0xf1, 0xbb, 0x3a, 0x20, 0x29, 0x07, 0x59, - 0xf0, 0xbc, 0xff, 0xab, 0xcf, 0x4e, 0x69, 0xbf}; + 0xf0, 0xbc, 0xff, 0xab, 0xcf, 0x4e, 0x69, 0x01}; Channels channels;