diff --git a/protob/messages.proto b/protob/messages.proto index 1083c3a65d..45d331a452 100644 --- a/protob/messages.proto +++ b/protob/messages.proto @@ -197,6 +197,8 @@ message LoadDevice { optional HDNodeType node = 2; optional bytes pin = 3; // Set PIN protection for important actions optional bool passphrase_protection = 4; + optional bytes language = 5 [default='english']; + optional bytes label = 6 [(binary) = true]; } // Request device to do full-reset, to generate new seed @@ -211,6 +213,11 @@ message ResetDevice { optional bool display_random = 1; // If set, displays entropy generated by the device used // for generating the seed *before* asking // for additional entropy from computer + optional uint32 strength = 2 [default=128]; // Strength of seed in bits + optional bool passphrase_protection = 3; + optional bool pin_protection = 4; + optional bytes language = 5 [default='english']; + optional bytes label = 6 [(binary) = true]; } // Asks for additional Entropy from host computer