1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-22 06:18:07 +00:00

feat(core): show progress for SLIP39 derivation

fixes #1842
This commit is contained in:
matejcik 2021-10-13 16:06:08 +02:00 committed by matejcik
parent 8caac218ec
commit faa807f995
2 changed files with 9 additions and 2 deletions

View File

@ -47,7 +47,11 @@ def get_seed(passphrase: str = "", progress_bar: bool = True) -> bytes:
# Identifier or exponent expected but not found
raise RuntimeError
seed = slip39.decrypt(
mnemonic_secret, passphrase.encode(), iteration_exponent, identifier
mnemonic_secret,
passphrase.encode(),
iteration_exponent,
identifier,
render_func,
)
return seed

View File

@ -37,7 +37,7 @@ from trezor.crypto import hmac, pbkdf2, random
from trezor.errors import MnemonicError
if False:
from typing import Iterable, Tuple
from typing import Callable, Iterable, Tuple
Indices = Tuple[int, ...]
MnemonicGroups = dict[int, tuple[int, set[tuple[int, bytes]]]]
@ -162,6 +162,7 @@ def decrypt(
passphrase: bytes,
iteration_exponent: int,
identifier: int,
progress_callback: Callable[[int, int], None] | None = None,
) -> bytes:
"""
Converts the Encrypted Master Secret to a Master Secret by applying the passphrase.
@ -177,6 +178,8 @@ def decrypt(
r,
_xor(l, _round_function(i, passphrase, iteration_exponent, salt, r)),
)
if progress_callback:
progress_callback(_ROUND_COUNT - i, _ROUND_COUNT)
return r + l