python-trezor/tools/encfs_aes_getpass.py

123 lines
3.4 KiB
Python
Raw Normal View History

#!/usr/bin/env python3
2016-05-20 13:27:20 -07:00
from __future__ import print_function
'''
2016-02-10 07:46:58 -08:00
Use TREZOR as a hardware key for opening EncFS filesystem!
Usage:
encfs --standard --extpass=./encfs_aes_getpass.py ~/.crypt ~/crypt
'''
import os
import sys
import json
import hashlib
import binascii
2017-06-23 12:31:42 -07:00
from trezorlib.client import TrezorClient
from trezorlib.transport import enumerate_devices
2016-05-20 04:36:17 -07:00
2017-06-23 12:31:42 -07:00
def wait_for_devices():
devices = enumerate_devices()
while not len(devices):
2016-02-10 07:46:58 -08:00
sys.stderr.write("Please connect TREZOR to computer and press Enter...")
2016-05-20 04:36:17 -07:00
input()
devices = enumerate_devices()
return devices
2017-06-23 12:31:42 -07:00
2014-06-12 10:16:30 -07:00
def choose_device(devices):
if not len(devices):
raise RuntimeError("No TREZOR connected!")
if len(devices) == 1:
try:
2017-09-04 04:36:31 -07:00
return devices[0]
except IOError:
raise RuntimeError("Device is currently in use")
i = 0
sys.stderr.write("----------------------------\n")
sys.stderr.write("Available devices:\n")
for d in devices:
try:
2017-09-04 04:36:31 -07:00
client = TrezorClient(d)
except IOError:
sys.stderr.write("[-] <device is currently in use>\n")
continue
if client.features.label:
sys.stderr.write("[%d] %s\n" % (i, client.features.label))
else:
sys.stderr.write("[%d] <no label>\n" % i)
2017-09-04 04:36:31 -07:00
client.close()
i += 1
sys.stderr.write("----------------------------\n")
2016-06-22 05:51:46 -07:00
sys.stderr.write("Please choose device to use:")
try:
2016-05-20 04:36:17 -07:00
device_id = int(input())
2017-09-04 04:36:31 -07:00
return devices[device_id]
except:
raise ValueError("Invalid choice, exiting...")
2017-06-23 12:31:42 -07:00
def main():
2017-06-23 12:31:42 -07:00
if 'encfs_root' not in os.environ:
sys.stderr.write('\nThis is not a standalone script and is not meant to be run independently.\n')
sys.stderr.write('\nUsage: encfs --standard --extpass=./encfs_aes_getpass.py ~/.crypt ~/crypt\n')
sys.exit(1)
devices = wait_for_devices()
transport = choose_device(devices)
client = TrezorClient(transport)
rootdir = os.environ['encfs_root'] # Read "man encfs" for more
passw_file = os.path.join(rootdir, 'password.dat')
if not os.path.exists(passw_file):
# New encfs drive, let's generate password
sys.stderr.write('Please provide label for new drive: ')
2016-05-20 04:36:17 -07:00
label = input()
2016-02-10 07:46:58 -08:00
sys.stderr.write('Computer asked TREZOR for new strong password.\n')
sys.stderr.write('Please confirm action on your device.\n')
# 32 bytes, good for AES
trezor_entropy = client.get_entropy(32)
urandom_entropy = os.urandom(32)
passw = hashlib.sha256(trezor_entropy + urandom_entropy).digest()
if len(passw) != 32:
raise ValueError("32 bytes password expected")
bip32_path = [10, 0]
passw_encrypted = client.encrypt_keyvalue(bip32_path, label, passw, False, True)
data = {'label': label,
'bip32_path': bip32_path,
'password_encrypted_hex': binascii.hexlify(passw_encrypted)}
2016-01-12 15:17:38 -08:00
json.dump(data, open(passw_file, 'wb'))
# Let's load password
data = json.load(open(passw_file, 'r'))
sys.stderr.write('Please confirm action on your device.\n')
passw = client.decrypt_keyvalue(data['bip32_path'],
2016-05-26 08:20:44 -07:00
data['label'],
binascii.unhexlify(data['password_encrypted_hex']),
False, True)
2016-05-20 04:36:17 -07:00
print(passw)
2017-06-23 12:31:42 -07:00
if __name__ == '__main__':
main()