pswrd

Crates.iopswrd
lib.rspswrd
version1.0.0
sourcesrc
created_at2017-10-08 11:05:03.809663
updated_at2018-01-28 07:50:42.984824
descriptionStateless password vault
homepagehttps://github.com/dotcypress/pswrd
repositoryhttps://github.com/dotcypress/pswrd
max_upload_size
id34829
size23,406
Vitaly Domnikov (dotcypress)

documentation

https://github.com/dotcypress/pswrd

README

pswrd

🕶 Stateless password vault.

Options

You can check by typing pswrd --help:

USAGE:
    pswrd [FLAGS] [OPTIONS] <scope>

FLAGS:
    -n               Emit trailing newline character.
    -h, --help       Prints help information
    -V, --version    Prints version information

OPTIONS:
    -u, --user <user>                          Sets the identity.
    -i, --index <index>                        Sets the password index. [default: 0]
        --master-password <master-password>    Sets the master password.

ARGS:
    <scope>    Sets the password scope (domain, application name, etc.)

EXAMPLES:

    Basic usage:
         pswrd foo@bar.tld

    Copy generated password to clipboard:
         pswrd foo@bar.tld | xclip
         pswrd foo@bar.tld | pbcopy

    Anvanced:
         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:

$ git clone https://github.com/dotcypress/pswrd
$ cd pswrd
$ cargo build --release
$ cp target/release/pswrd ~/.bin # assuming .bin is in your path
Commit count: 11

cargo fmt