1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-22 23:48:12 +00:00
trezor-firmware/mocks/generated/trezorconfig.py

29 lines
668 B
Python
Raw Normal View History

2017-06-14 17:27:02 +00:00
from typing import *
2017-06-14 15:41:45 +00:00
# extmod/modtrezorconfig/modtrezorconfig.c
class Config:
'''
Persistent key-value storage, with 16-bit keys and bytes values.
'''
def __init__(self):
'''
Initializes the storage.
'''
def get(self, app: int, key: int) -> bytes:
'''
Gets a value of given key for given app (or empty bytes if not set).
'''
def set(self, app: int, key: int, value: bytes) -> None:
'''
Sets a value of given key for given app.
Returns True on success.
'''
def wipe(self) -> None:
'''
Erases the whole config. Use with caution!
'''