1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-22 15:38:11 +00:00

bip39: pbkdf2 rounds 4096 -> 2048

This commit is contained in:
Pavol Rusnak 2014-01-10 20:22:33 +01:00
parent 8423c7abfd
commit e681e2b7ae

View File

@ -7,7 +7,7 @@
#include "pbkdf2.h" #include "pbkdf2.h"
#include "bip39_english.h" #include "bip39_english.h"
#define PBKDF2_ROUNDS 4096 #define PBKDF2_ROUNDS 2048
const char *mnemonic_generate(int strength) const char *mnemonic_generate(int strength)
{ {