mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-23 23:08:14 +00:00
src/apps/common/storage: add autolock_delay_ms variable
This commit is contained in:
parent
04680f4bbf
commit
a6e8a37239
@ -21,6 +21,7 @@ _FLAGS = const(0x08) # int
|
|||||||
_U2F_COUNTER = const(0x09) # int
|
_U2F_COUNTER = const(0x09) # int
|
||||||
_PASSPHRASE_SOURCE = const(0x0A) # int
|
_PASSPHRASE_SOURCE = const(0x0A) # int
|
||||||
_UNFINISHED_BACKUP = const(0x0B) # bool (0x01 or empty)
|
_UNFINISHED_BACKUP = const(0x0B) # bool (0x01 or empty)
|
||||||
|
_AUTOLOCK_DELAY_MS = const(0x0C) # int
|
||||||
|
|
||||||
|
|
||||||
def _new_device_id() -> str:
|
def _new_device_id() -> str:
|
||||||
@ -130,6 +131,20 @@ def set_flags(flags: int) -> None:
|
|||||||
config.set(_APP, _FLAGS, flags.to_bytes(4, 'big'))
|
config.set(_APP, _FLAGS, flags.to_bytes(4, 'big'))
|
||||||
|
|
||||||
|
|
||||||
|
def get_autolock_delay_ms() -> int:
|
||||||
|
b = config.get(_APP, _AUTOLOCK_DELAY_MS)
|
||||||
|
if b is None:
|
||||||
|
return 10 * 60 * 1000
|
||||||
|
else:
|
||||||
|
return int.from_bytes(b, 'big')
|
||||||
|
|
||||||
|
|
||||||
|
def set_autolock_delay_ms(delay_ms: int) -> None:
|
||||||
|
if delay_ms < 60 * 1000:
|
||||||
|
delay_ms = 60 * 1000
|
||||||
|
config.set(_APP, _AUTOLOCK_DELAY_MS, delay_ms.to_bytes(4, 'big'))
|
||||||
|
|
||||||
|
|
||||||
def next_u2f_counter() -> int:
|
def next_u2f_counter() -> int:
|
||||||
b = config.get(_APP, _U2F_COUNTER)
|
b = config.get(_APP, _U2F_COUNTER)
|
||||||
if b is None:
|
if b is None:
|
||||||
|
Loading…
Reference in New Issue
Block a user