https://github.com/dotcypress/pswrd
Stateless password vault
https://github.com/dotcypress/pswrd
Last synced: 26 days ago
JSON representation
Stateless password vault
- Host: GitHub
- URL: https://github.com/dotcypress/pswrd
- Owner: dotcypress
- License: apache-2.0
- Created: 2017-10-08T11:05:14.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-07-26T18:40:27.000Z (almost 6 years ago)
- Last Synced: 2025-03-28T06:46:45.804Z (about 2 months ago)
- Language: Rust
- Homepage: https://crates.io/crates/pswrd
- Size: 25.4 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# pswrd
🕶 Stateless password vault.
## Options
You can check by typing `pswrd --help`:
```
USAGE:
pswrd [FLAGS] [OPTIONS]FLAGS:
-n Emit trailing newline character.
-h, --help Prints help information
-V, --version Prints version informationOPTIONS:
-u, --user Sets the identity.
-i, --index Sets the password index. [default: 0]
--master-password Sets the master password.ARGS:
Sets the password scope (domain, application name, etc.)EXAMPLES:
Basic usage:
pswrd [email protected]Copy generated password to clipboard:
pswrd [email protected] | xclip
pswrd [email protected] | pbcopyAnvanced:
pswrd -u foo bar.tld
pswrd -u foo -s bar.tld
pswrd -u=foo -s=bar.tld -i=3
pswrd --user foo --scope bar.tld
```## Installation
You can use the `cargo install` command:
$ cargo install pswrd
or a classic build and run:
```bash
$ git clone https://github.com/dotcypress/pswrd
$ cd pswrd
$ cargo build --release
$ cp target/release/pswrd ~/.bin # assuming .bin is in your path
```