2013-11-22 16:27:47 +00:00
|
|
|
/*
|
|
|
|
Structure of Storage area of TREZOR
|
|
|
|
|
|
|
|
Author: Marek Palatinus <slush@satoshilabs.com>
|
|
|
|
|
|
|
|
Version: 0.1
|
|
|
|
*/
|
|
|
|
|
2014-02-02 10:28:43 +00:00
|
|
|
// Some sugar for easier handling in Multibit
|
|
|
|
option java_package = "org.multibit.hd.hardware.trezor.protobuf";
|
|
|
|
option java_outer_classname = "TrezorStorage";
|
|
|
|
|
2013-11-26 14:48:17 +00:00
|
|
|
import "types.proto";
|
2013-11-22 16:27:47 +00:00
|
|
|
|
|
|
|
message Storage {
|
|
|
|
required uint32 version = 1;
|
2013-11-28 01:18:32 +00:00
|
|
|
optional HDNodeType node = 2;
|
2013-11-26 15:10:55 +00:00
|
|
|
optional bytes mnemonic = 3 [(binary) = true];
|
2013-11-28 00:05:50 +00:00
|
|
|
optional bool passphrase_protection = 4; // whether node_serialized or mnemonic are encrypted (protected by passphrase)
|
2013-11-26 15:10:55 +00:00
|
|
|
optional uint32 pin_failed_attempts = 5;
|
|
|
|
optional bytes pin = 6;
|
|
|
|
optional bytes language = 7;
|
|
|
|
optional bytes label = 8 [(binary) = true];
|
2014-02-19 16:44:03 +00:00
|
|
|
}
|