git.schokokeks.org
Repositories
Help
Report an Issue
derivepassphrase.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
f1e944c
Branches
Tags
documentation-tree
master
0.1.0
0.1.1
0.1.2
0.1.3
0.2.0
0.3.0
0.3.1
0.3.2
derivepassphrase.git
README.md
Update all URLs to stable and "less legally risky" versions, if possible
Marco Ricci
commited
f1e944c
at 2024-09-15 00:34:08
README.md
Blame
History
Raw
# derivepassphrase [![PyPI - Version](https://img.shields.io/pypi/v/derivepassphrase.svg)](https://pypi.org/project/derivepassphrase) [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/derivepassphrase.svg)](https://pypi.org/project/derivepassphrase) An almost faithful Python reimplementation of [James Coglan's `vault`][VAULT], a deterministic password manager/generator. Using a master passphrase or a master SSH key, derive a passphrase for a given named service, subject to length, character and character repetition constraints. The derivation is cryptographically strong, meaning that even if a single passphrase is compromised, guessing the master passphrase or a different service's passphrase is computationally infeasible. The derivation is also deterministic, given the same inputs, thus the resulting passphrase need not be stored explicitly. The service name and constraints themselves also need not be kept secret; the latter are usually stored in a world-readable file. [VAULT]: https://www.npmjs.com/package/vault ----- ## Installation ### With `pip` (If not inside a [virtual environment][VENV], use `pip install --user` instead of plain `pip install`.) ```` shell-session $ pip install derivepassphrase ```` To use the `export` subcommand, install the `export` extra: ```` shell-session $ pip install "derivepassphrase[export]" ```` [VENV]: https://docs.python.org/3/library/venv.html ### Manually `derivepassphrase` is a pure Python package, and may be easily installed manually by placing the respective files and the package's dependencies into Python's import path. `derivepassphrase` requires Python 3.10 or higher as well as the [typing-extensions package][TYPING_EXTENSIONS] for its core functionality and programmatic interface, and [`click`][CLICK] 8.1 or higher for its command-line interface. Using the `export vault` subcommand additionally requires the [cryptography package][CRYPTOGRAPHY], version 38.0 or newer. [TYPING_EXTENSIONS]: https://pypi.org/project/typing-extensions/ [CLICK]: https://pypi.org/project/click/ [CRYPTOGRAPHY]: https://pypi.org/project/cryptography/ ## Quick Usage `derivepassphrase` is designed to principally support multiple passphrase derivation schemes, but currently only the "[vault][VAULT]" scheme is implemented. Using the passphrase `This passphrase is for demonstration purposes only.` when prompted: ```` shell-session $ derivepassphrase vault -p --length 30 --upper 3 --lower 1 --number 2 --space 0 --symbol 0 my-email-account Passphrase: JKeet7GeBpxysOgdCEJo6UzmP8A0Ih ```` Some time later… ```` shell-session $ derivepassphrase vault -p --length 30 --upper 3 --lower 1 --number 2 --space 0 --symbol 0 my-email-account Passphrase: JKeet7GeBpxysOgdCEJo6UzmP8A0Ih ```` ### Storing settings `derivepassphrase` can store the length and character constraint settings in its configuration file so that you do not have to re-enter them each time. ```` shell-session $ derivepassphrase vault --config --length 30 --upper 3 --lower 1 --number 2 --space 0 --symbol 0 my-email-account $ derivepassphrase vault -p my-email-account Passphrase: JKeet7GeBpxysOgdCEJo6UzmP8A0Ih ```` ### SSH agent support On UNIX-like systems with OpenSSH or PuTTY installed, you can use an Ed25519, Ed448 or RSA key from the agent instead of a master passphrase. ([On Windows there are problems establishing communication channels with the agent.][#13]) ```` shell-session $ derivepassphrase vault -k my-email-account Suitable SSH keys: [1] ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQ... test key [2] ssh-ed448 AAAACXNzaC1lZDQ0OAAAADni9nLTT1... test key [3] ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIF4gW... test key Your selection? (1-3, leave empty to abort): 1 oXDGCvMhLWPQyCzYtaobOq2Wh9olYj ```` `derivepassphrase` can store the SSH key selection in its configuration file so you do not have to re-select it each time. This choice can be made either specifically for the service (in this case, `my-email-account`), or globally. ```` shell-session $ derivepassphrase vault --config -k # global setting Suitable SSH keys: [1] ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQ... test key [2] ssh-ed448 AAAACXNzaC1lZDQ0OAAAADni9nLTT1... test key [3] ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIF4gW... test key Your selection? (1-3, leave empty to abort): 1 $ derivepassphrase vault my-email-account oXDGCvMhLWPQyCzYtaobOq2Wh9olYj ```` [#13]: https://github.com/the-13th-letter/derivepassphrase/issues/13 "Issue 13: Support PuTTY/Pageant (and maybe OpenSSH/ssh-agent) on Windows" ## License `derivepassphrase` is distributed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license.