feat: special log for hww
This commit is contained in:
parent
3f71df7829
commit
174cc28fe1
2 changed files with 14 additions and 0 deletions
|
|
@ -209,6 +209,16 @@ async function serialSigner(path) {
|
||||||
this.handleDhExchangeResponse(commandData)
|
this.handleDhExchangeResponse(commandData)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
switch (command) {
|
||||||
|
case COMMAND_DH_EXCHANGE:
|
||||||
|
this.handleDhExchangeResponse(commandData)
|
||||||
|
return
|
||||||
|
case COMMAND_LOG:
|
||||||
|
|
||||||
|
console.log(` %c${commandData}`, 'background: #222; color: #bada55')
|
||||||
|
|
||||||
|
return
|
||||||
|
}
|
||||||
if (this.dheKey) {
|
if (this.dheKey) {
|
||||||
try {
|
try {
|
||||||
console.log('### value', value)
|
console.log('### value', value)
|
||||||
|
|
@ -231,6 +241,9 @@ async function serialSigner(path) {
|
||||||
nobleSecp256k1.utils.bytesToHex(decrypted1)
|
nobleSecp256k1.utils.bytesToHex(decrypted1)
|
||||||
)
|
)
|
||||||
console.log('### decrypted text 1', new TextDecoder().decode(decrypted1))
|
console.log('### decrypted text 1', new TextDecoder().decode(decrypted1))
|
||||||
|
|
||||||
|
var decryptedText = aesjs.utils.utf8.fromBytes(decrypted1);
|
||||||
|
console.log('### decrypted text utf8 1',decryptedText);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.log('### error 2', error)
|
console.log('### error 2', error)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -11,6 +11,7 @@ const COMMAND_CONFIRM_NEXT = '/confirm-next'
|
||||||
const COMMAND_CANCEL = '/cancel'
|
const COMMAND_CANCEL = '/cancel'
|
||||||
const COMMAND_XPUB = '/xpub'
|
const COMMAND_XPUB = '/xpub'
|
||||||
const COMMAND_DH_EXCHANGE = '/dh-exchange'
|
const COMMAND_DH_EXCHANGE = '/dh-exchange'
|
||||||
|
const COMMAND_LOG = '/log'
|
||||||
|
|
||||||
const DEFAULT_RECEIVE_GAP_LIMIT = 20
|
const DEFAULT_RECEIVE_GAP_LIMIT = 20
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue