You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-firmware/protob/storage.proto

23 lines
423 B

/*
Structure of Storage area of TREZOR
Author: Marek Palatinus <slush@satoshilabs.com>
Version: 0.1
*/
import "types.proto";
message Storage {
required uint32 version = 1;
optional HDNodeType seed = 2;
optional bool seed_encrypted = 3;
optional uint32 pin_failed_attempts = 4;
optional bytes pin = 5;
optional SettingsType settings = 6;
}
message Session {
optional bytes passphrase = 1 [(binary) = true];
}