1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-02-16 17:42:02 +00:00

align encryption of hdnode with mnemonic logic

This commit is contained in:
Pavol Rusnak 2014-08-07 20:56:56 +02:00
parent 524f2a957a
commit e5bdf1943a

View File

@ -225,7 +225,7 @@ bool storage_getRootNode(HDNode *node)
return false;
}
hdnode_from_xprv(storage.node.depth, storage.node.fingerprint, storage.node.child_num, storage.node.chain_code.bytes, storage.node.private_key.bytes, &sessionRootNode);
if (storage.has_passphrase_protection && storage.passphrase_protection) {
if (storage.has_passphrase_protection && storage.passphrase_protection && strlen(sessionPassphrase)) {
// decrypt hd node
uint8_t secret[64];
layoutProgressSwipe("Waking up", 0, 0);