Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/byxor/passflip

Lightweight password manager that doesn't store anything
https://github.com/byxor/passflip

password-manager python3 security

Last synced: 24 days ago
JSON representation

Lightweight password manager that doesn't store anything

Awesome Lists containing this project

README

        

[![PyPI version](https://badge.fury.io/py/passflip.svg)](https://badge.fury.io/py/passflip)

# passflip

An easy-to-use command-line tool that lets you secure your passwords.

* Use a single master password to generate unique passwords for different websites.

* Generated passwords are 56 characters long by default, making them very time-consuming for a computer to crack.

## Installation

Installable via pip:

`sudo pip install passflip`

## Usage

1. Start the program by running `passflip` as a command.

2. Enter your master password (e.g. `byxor_rocks_1337`)

3. Enter your salt (e.g. `twitter`)

The program will then give you your unique secured password for twitter.

## Tips

* You can enable "check" mode with the `-c` or `--check` option. This requires input to be entered twice.

* You can limit the length of a password using the `-l ` option.

* You can copy the password to the clipboard automatically by piping the output into OS-specific commands.
* Linux: `passflip | xclip -selection clipboard`
* OSX: `passflip | pbcopy`
* Windows: `passflip | clip`

## Contribution

See anything you want to improve? Want to add any features? Make a pull request and I'll be happy to accept it if it's good.