We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f4b1249 + df6fa8f commit 528ed6dCopy full SHA for 528ed6d
src/rust/bitbox02-rust/src/hww/noise.rs
@@ -106,7 +106,9 @@ pub(crate) async fn process(
106
bitbox02_noise::HandshakeResult::Done => {
107
let already_verified =
108
memory::check_noise_remote_static_pubkey(&state.remote_static_pubkey()?);
109
- if already_verified {
+ // When communicating over BLE, we don't require noise pairing code
110
+ // confirmation, as BLE already requires pairing with a pairing code.
111
+ if bitbox02::communication_mode_ble_enabled() || already_verified {
112
state.set_pairing_verified()?;
113
usb_out.push(0); // let app know we don't require verification
114
} else {
0 commit comments