mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-15 20:19:23 +00:00
mocks: generate
This commit is contained in:
parent
5560a35af7
commit
a96c39a9d1
@ -1,25 +1,31 @@
|
||||
from typing import *
|
||||
|
||||
# extmod/modtrezorconfig/modtrezorconfig.c
|
||||
def init() -> None:
|
||||
def init(ui_wait_callback: (int, int -> None)=None) -> None:
|
||||
'''
|
||||
Initializes the storage. Must be called before any other method is
|
||||
called from this module!
|
||||
'''
|
||||
|
||||
# extmod/modtrezorconfig/modtrezorconfig.c
|
||||
def check_pin(pin: int, waitcallback: (int, int -> None)) -> bool:
|
||||
def check_pin(pin: int) -> bool:
|
||||
'''
|
||||
Check the given PIN. Returns True on success, False on failure.
|
||||
'''
|
||||
|
||||
# extmod/modtrezorconfig/modtrezorconfig.c
|
||||
def unlock(pin: int, waitcallback: (int, int -> None)) -> bool:
|
||||
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 lock() -> None:
|
||||
'''
|
||||
Locks the storage.
|
||||
'''
|
||||
|
||||
# extmod/modtrezorconfig/modtrezorconfig.c
|
||||
def has_pin() -> bool:
|
||||
'''
|
||||
@ -27,7 +33,13 @@ def has_pin() -> bool:
|
||||
'''
|
||||
|
||||
# extmod/modtrezorconfig/modtrezorconfig.c
|
||||
def change_pin(pin: int, newpin: int, waitcallback: (int, int -> None)) -> bool:
|
||||
def get_pin_rem() -> int:
|
||||
'''
|
||||
Returns the number of remaining PIN entry attempts.
|
||||
'''
|
||||
|
||||
# extmod/modtrezorconfig/modtrezorconfig.c
|
||||
def change_pin(pin: int, newpin: int) -> bool:
|
||||
'''
|
||||
Change PIN. Returns True on success, False on failure.
|
||||
'''
|
||||
@ -35,7 +47,8 @@ def change_pin(pin: int, newpin: int, waitcallback: (int, int -> None)) -> bool:
|
||||
# extmod/modtrezorconfig/modtrezorconfig.c
|
||||
def get(app: int, key: int, public: bool=False) -> bytes:
|
||||
'''
|
||||
Gets a value of given key for given app (or empty bytes if not set).
|
||||
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.
|
||||
'''
|
||||
|
||||
# extmod/modtrezorconfig/modtrezorconfig.c
|
||||
@ -44,6 +57,24 @@ def set(app: int, key: int, value: bytes, public: bool=False) -> None:
|
||||
Sets a value of given key for given app.
|
||||
'''
|
||||
|
||||
# extmod/modtrezorconfig/modtrezorconfig.c
|
||||
def delete(app: int, key: int, public: bool=False) -> bool:
|
||||
'''
|
||||
Deletes the given key of the given app.
|
||||
'''
|
||||
|
||||
# extmod/modtrezorconfig/modtrezorconfig.c
|
||||
def set_counter(app: int, key: int, count: int, writable_locked: bool=False) -> bool:
|
||||
'''
|
||||
Sets the given key of the given app as a counter with the given value.
|
||||
'''
|
||||
|
||||
# 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.
|
||||
'''
|
||||
|
||||
# extmod/modtrezorconfig/modtrezorconfig.c
|
||||
def wipe() -> None:
|
||||
'''
|
||||
|
@ -112,7 +112,7 @@ class HDNode:
|
||||
Construct a BIP0032 HD node from a BIP0039 seed value.
|
||||
'''
|
||||
|
||||
def from_mnemonic_cardano(mnemonic: str) -> bytes:
|
||||
def from_mnemonic_cardano(mnemonic: str, passphrase: str) -> bytes:
|
||||
'''
|
||||
Convert mnemonic to hdnode
|
||||
'''
|
||||
|
@ -32,7 +32,7 @@ def check(mnemonic: str) -> bool:
|
||||
'''
|
||||
|
||||
# extmod/modtrezorcrypto/modtrezorcrypto-bip39.h
|
||||
def seed(mnemonic: str, passphrase: str) -> bytes:
|
||||
def seed(mnemonic: str, passphrase: str, callback: (int, int -> None)=None) -> bytes:
|
||||
'''
|
||||
Generate seed from mnemonic and passphrase.
|
||||
'''
|
||||
|
@ -13,7 +13,7 @@ def publickey(secret_key: bytes, compressed: bool = True) -> bytes:
|
||||
'''
|
||||
|
||||
# extmod/modtrezorcrypto/modtrezorcrypto-secp256k1.h
|
||||
def sign(secret_key: bytes, digest: bytes, compressed: bool = True, ethereum_canonical: bool = False) -> bytes:
|
||||
def sign(secret_key: bytes, digest: bytes, compressed: bool = True, canonical: int = None) -> bytes:
|
||||
'''
|
||||
Uses secret key to produce the signature of the digest.
|
||||
'''
|
||||
|
Loading…
Reference in New Issue
Block a user