See https://github.com/str4d/rage/tree/main/age-plugin. Example usage: RAGE_DIR=$PWD/../Rust/rage (cd $RAGE_DIR; cargo build --all) export PATH=$PATH:$RAGE_DIR/target/debug age-plugin-trezor -i "John Doe" | tee trezor.id R=$(grep recipient trezor.id | cut -f 3 -d ' ') date | tee msg.txt rage -er $R < msg.txt > enc.txt rage -di trezor.id < enc.txt
31 lines
960 B
Python
31 lines
960 B
Python
"""TREZOR-related definitions."""
|
|
|
|
# pylint: disable=unused-import,import-error,no-name-in-module,no-member
|
|
import logging
|
|
import os
|
|
|
|
import mnemonic
|
|
import semver
|
|
import trezorlib
|
|
from trezorlib.btc import get_address, get_public_node
|
|
from trezorlib.client import PASSPHRASE_TEST_PATH
|
|
from trezorlib.client import TrezorClient as Client
|
|
from trezorlib.exceptions import PinException, TrezorFailure
|
|
from trezorlib.messages import IdentityType
|
|
from trezorlib.misc import get_ecdh_session_key, sign_identity
|
|
from trezorlib.transport import get_transport
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
def find_device():
|
|
"""Selects a transport based on `TREZOR_PATH` environment variable.
|
|
|
|
If unset, picks first connected device.
|
|
"""
|
|
try:
|
|
return get_transport(os.environ.get("TREZOR_PATH"), prefix_search=True)
|
|
except Exception as e: # pylint: disable=broad-except
|
|
log.debug("Failed to find a Trezor device: %s", e)
|
|
return None
|