Skip to content

Commit

Permalink
cleanup ble logs
Browse files Browse the repository at this point in the history
  • Loading branch information
cs0x7f committed Aug 28, 2024
1 parent 3e14007 commit fc01f71
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion src/js/hardware/gancube.js
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,6 @@ execMain(function() {
value.push(parseInt(mac.slice(i * 3, i * 3 + 2), 16));
}
var keyiv = getKeyV2(value, ver);
giikerutil.log('[gancube] ver=', ver, ' key=', JSON.stringify(keyiv));
decoder = $.aes128(keyiv[0]);
decoder.iv = keyiv[1];
}
Expand Down
1 change: 0 additions & 1 deletion src/js/hardware/moyu32cube.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ execMain(function() {
value.push(parseInt(mac.slice(i * 3, i * 3 + 2), 16));
}
var keyiv = getKeyAndIv(value);
giikerutil.log('[Moyu32Cube] key=', JSON.stringify(keyiv));
decoder = $.aes128(keyiv[0]);
decoder.iv = keyiv[1];
}
Expand Down

0 comments on commit fc01f71

Please sign in to comment.