1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-13 03:19:05 +00:00
trezor-firmware/core/mocks/generated/trezorconfig.py

100 lines
2.3 KiB
Python
Raw Normal View History

2017-06-14 17:27:02 +00:00
from typing import *
2017-06-14 15:41:45 +00:00
2017-06-14 15:41:45 +00:00
# extmod/modtrezorconfig/modtrezorconfig.c
def init(ui_wait_callback: Tuple[int, Callable[int, None]] = None) -> None:
"""
Initializes the storage. Must be called before any other method is
called from this module!
"""
2017-06-14 15:41:45 +00:00
2018-03-09 10:37:06 +00:00
# extmod/modtrezorconfig/modtrezorconfig.c
2019-02-27 10:30:58 +00:00
def unlock(pin: int) -> bool:
"""
Attempts to unlock the storage with given PIN. Returns True on
success, False on failure.
"""
# extmod/modtrezorconfig/modtrezorconfig.c
def check_pin(pin: int) -> bool:
"""
Check the given PIN. Returns True on success, False on failure.
"""
2019-02-27 10:30:58 +00:00
# extmod/modtrezorconfig/modtrezorconfig.c
def lock() -> None:
"""
2019-02-27 10:30:58 +00:00
Locks the storage.
"""
2019-02-27 10:30:58 +00:00
# extmod/modtrezorconfig/modtrezorconfig.c
def has_pin() -> bool:
"""
Returns True if storage has a configured PIN, False otherwise.
"""
# extmod/modtrezorconfig/modtrezorconfig.c
2019-02-27 10:30:58 +00:00
def get_pin_rem() -> int:
"""
2019-02-27 10:30:58 +00:00
Returns the number of remaining PIN entry attempts.
"""
2019-02-27 10:30:58 +00:00
# extmod/modtrezorconfig/modtrezorconfig.c
def change_pin(pin: int, newpin: int) -> bool:
"""
Change PIN. Returns True on success, False on failure.
"""
# extmod/modtrezorconfig/modtrezorconfig.c
def get(app: int, key: int, public: bool = False) -> bytes:
"""
2019-02-27 10:30:58 +00:00
Gets the value of the given key for the given app (or None if not set).
Raises a RuntimeError if decryption or authentication of the stored
value fails.
"""
2017-06-14 15:41:45 +00:00
# extmod/modtrezorconfig/modtrezorconfig.c
def set(app: int, key: int, value: bytes, public: bool = False) -> None:
"""
Sets a value of given key for given app.
"""
2017-06-14 15:41:45 +00:00
2019-02-27 10:30:58 +00:00
# extmod/modtrezorconfig/modtrezorconfig.c
def delete(app: int, key: int, public: bool = False) -> bool:
"""
2019-02-27 10:30:58 +00:00
Deletes the given key of the given app.
"""
2019-02-27 10:30:58 +00:00
# extmod/modtrezorconfig/modtrezorconfig.c
def set_counter(
app: int, key: int, count: int, writable_locked: bool = False
) -> bool:
"""
2019-02-27 10:30:58 +00:00
Sets the given key of the given app as a counter with the given value.
"""
2019-02-27 10:30:58 +00:00
# extmod/modtrezorconfig/modtrezorconfig.c
def next_counter(app: int, key: int, writable_locked: bool = False) -> bool:
"""
Increments the counter stored under the given key of the given app and
returns the new value.
"""
2019-02-27 10:30:58 +00:00
# extmod/modtrezorconfig/modtrezorconfig.c
def wipe() -> None:
"""
Erases the whole config. Use with caution!
"""