1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-01-10 23:40:58 +00:00

tools: remove forgotten debug statements in encfs_aes_getpass

This commit is contained in:
matejcik 2018-04-16 17:29:57 +02:00
parent 9255507529
commit 688fe06e93

View File

@ -98,9 +98,7 @@ def main():
raise ValueError("32 bytes password expected")
bip32_path = [10, 0]
sys.stderr.write('Generated password is {}\n'.format(passw))
passw_encrypted = client.encrypt_keyvalue(bip32_path, label, passw, False, True)
sys.stderr.write('Encrypted password is {}\n'.format(passw_encrypted))
data = {'label': label,
'bip32_path': bip32_path,
@ -117,7 +115,6 @@ def main():
binascii.unhexlify(data['password_encrypted_hex']),
False, True)
sys.stderr.write('Submitting password {}\n'.format(passw))
print(passw)