mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-18 05:28:40 +00:00
Smoother progress bar for wakeup
Call interrupt twice as often; makes progress bar smoother.
This commit is contained in:
parent
32bda8d1d9
commit
9101c050aa
6
bip39.c
6
bip39.c
@ -226,10 +226,10 @@ void mnemonic_to_seed(const char *mnemonic, const char *passphrase, uint8_t seed
|
|||||||
if (progress_callback) {
|
if (progress_callback) {
|
||||||
progress_callback(0, BIP39_PBKDF2_ROUNDS);
|
progress_callback(0, BIP39_PBKDF2_ROUNDS);
|
||||||
}
|
}
|
||||||
for (int i = 0; i < 8; i++) {
|
for (int i = 0; i < 16; i++) {
|
||||||
pbkdf2_hmac_sha512_Update(&pctx, BIP39_PBKDF2_ROUNDS / 8);
|
pbkdf2_hmac_sha512_Update(&pctx, BIP39_PBKDF2_ROUNDS / 16);
|
||||||
if (progress_callback) {
|
if (progress_callback) {
|
||||||
progress_callback((i + 1) * BIP39_PBKDF2_ROUNDS / 8, BIP39_PBKDF2_ROUNDS);
|
progress_callback((i + 1) * BIP39_PBKDF2_ROUNDS / 16, BIP39_PBKDF2_ROUNDS);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
pbkdf2_hmac_sha512_Final(&pctx, seed);
|
pbkdf2_hmac_sha512_Final(&pctx, seed);
|
||||||
|
Loading…
Reference in New Issue
Block a user