Skip to content

Commit 4786e19

Browse files
authored
Merge pull request #1491 from NickeZ/nickez/new-ble-v1
ble: new v1 firmware
2 parents c94224a + c9d6bee commit 4786e19

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

bitbox-da14531-firmware.bin

0 Bytes
Binary file not shown.

src/factorysetup.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@
4646

4747
// We commit to the BLE firmware hash here to avoid accidentally installing an unexpected firmware.
4848
static const uint8_t _allowed_ble_fw_hash[32] =
49-
"\xa6\xe8\xda\x32\xe5\x2c\x9b\xdf\xca\xb2\xb8\xbd\x9c\x3f\x5c\xb2\xb8\xa4\xe4\x14\x29\x49\x5e"
50-
"\x98\x63\xcc\xb0\xd4\x96\xfa\xd5\xe6";
49+
"\x2a\x92\xcc\x7f\xd5\xbf\xb0\x81\x17\x8e\x93\xe8\x13\x2b\x8e\x99\x87\x18\x0b\x1e\x60\x9f\xc8"
50+
"\x91\x5c\x98\xeb\x4f\x2b\xe8\x19\x0a";
5151

5252
// 65 bytes uncompressed secp256k1 root attestation pubkey.
5353
#define ROOT_PUBKEY_SIZE 65

src/rust/bitbox02-rust/src/hww/api/bluetooth.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ use alloc::vec::Vec;
2727

2828
use bitbox02::{memory, spi_mem};
2929

30-
const ALLOWED_HASH: &[u8; 32] = b"\xa6\xe8\xda\x32\xe5\x2c\x9b\xdf\xca\xb2\xb8\xbd\x9c\x3f\x5c\xb2\xb8\xa4\xe4\x14\x29\x49\x5e\x98\x63\xcc\xb0\xd4\x96\xfa\xd5\xe6";
30+
const ALLOWED_HASH: &[u8; 32] = b"\x2a\x92\xcc\x7f\xd5\xbf\xb0\x81\x17\x8e\x93\xe8\x13\x2b\x8e\x99\x87\x18\x0b\x1e\x60\x9f\xc8\x91\x5c\x98\xeb\x4f\x2b\xe8\x19\x0a";
3131

3232
// We want to write FW to the memory chip in erase-size chunks, so that we don't repeatedly need to
3333
// read-erase-write the same sector.

0 commit comments

Comments
 (0)