mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-18 13:38:12 +00:00
20 lines
486 B
Python
20 lines
486 B
Python
|
|
# ../extmod/modtrezorconfig/modtrezorconfig.c
|
|
def get(app: int, key: int) -> bytes:
|
|
'''
|
|
Gets a value of given key for given app (or None if not set).
|
|
'''
|
|
|
|
# ../extmod/modtrezorconfig/modtrezorconfig.c
|
|
def set(app: int, key: int, value: bytes) -> None:
|
|
'''
|
|
Sets a value of given key for given app.
|
|
Returns True on success.
|
|
'''
|
|
|
|
# ../extmod/modtrezorconfig/modtrezorconfig.c
|
|
def wipe() -> None:
|
|
'''
|
|
Erases the whole config (use with caution!)
|
|
'''
|