mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-02-18 10:32:02 +00:00
add address_n field to EncryptMessage
This commit is contained in:
parent
5bbe684c10
commit
e2dab40398
@ -405,6 +405,7 @@ message EncryptMessage {
|
|||||||
optional bytes pubkey = 1; // public key
|
optional bytes pubkey = 1; // public key
|
||||||
optional bytes message = 2; // message to encrypt
|
optional bytes message = 2; // message to encrypt
|
||||||
optional bool display_only = 3; // show just on display? (don't send back via wire)
|
optional bool display_only = 3; // show just on display? (don't send back via wire)
|
||||||
|
repeated uint32 address_n = 4; // BIP-32 path to derive the signing key from master node
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -413,7 +414,7 @@ message EncryptMessage {
|
|||||||
* @next Failure
|
* @next Failure
|
||||||
*/
|
*/
|
||||||
message DecryptMessage {
|
message DecryptMessage {
|
||||||
repeated uint32 address_n = 1; // BIP-32 path to derive the key from master node
|
repeated uint32 address_n = 1; // BIP-32 path to derive the decryption key from master node
|
||||||
optional bytes message = 2; // message to decrypt
|
optional bytes message = 2; // message to decrypt
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user