1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-12 02:31:05 +00:00
trezor-firmware/python/src/trezorlib/messages/ResetDevice.py

57 lines
1.9 KiB
Python
Raw Normal View History

# Automatically generated by pb2py
# fmt: off
# isort:skip_file
from .. import protobuf as p
2019-07-03 13:02:50 +00:00
if __debug__:
try:
from typing import Dict, List, Optional # noqa: F401
from typing_extensions import Literal # noqa: F401
2019-09-19 07:37:23 +00:00
EnumTypeBackupType = Literal[0, 1, 2]
2019-07-03 13:02:50 +00:00
except ImportError:
2019-10-02 12:40:25 +00:00
pass
2019-07-03 13:02:50 +00:00
class ResetDevice(p.MessageType):
MESSAGE_WIRE_TYPE = 14
def __init__(
self,
2020-09-14 11:56:11 +00:00
*,
display_random: Optional[bool] = None,
2020-09-14 11:56:11 +00:00
strength: int = 256,
passphrase_protection: Optional[bool] = None,
pin_protection: Optional[bool] = None,
2020-09-14 11:56:11 +00:00
language: str = "en-US",
label: Optional[str] = None,
u2f_counter: Optional[int] = None,
skip_backup: Optional[bool] = None,
no_backup: Optional[bool] = None,
2020-09-14 11:56:11 +00:00
backup_type: EnumTypeBackupType = 0,
) -> None:
self.display_random = display_random
self.strength = strength
self.passphrase_protection = passphrase_protection
self.pin_protection = pin_protection
self.language = language
self.label = label
self.u2f_counter = u2f_counter
self.skip_backup = skip_backup
self.no_backup = no_backup
2019-07-22 09:41:59 +00:00
self.backup_type = backup_type
@classmethod
2019-07-03 13:02:50 +00:00
def get_fields(cls) -> Dict:
return {
2020-09-14 11:56:11 +00:00
1: ('display_random', p.BoolType, None),
2: ('strength', p.UVarintType, 256), # default=256
3: ('passphrase_protection', p.BoolType, None),
4: ('pin_protection', p.BoolType, None),
5: ('language', p.UnicodeType, "en-US"), # default=en-US
6: ('label', p.UnicodeType, None),
7: ('u2f_counter', p.UVarintType, None),
8: ('skip_backup', p.BoolType, None),
9: ('no_backup', p.BoolType, None),
10: ('backup_type', p.EnumType("BackupType", (0, 1, 2,)), 0), # default=Bip39
}