Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/byxor/passflip
- Owner: byxor
- License: gpl-3.0
- Created: 2016-10-08T12:12:17.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2020-08-07T13:30:37.000Z (about 4 years ago)
- Last Synced: 2024-10-10T09:27:02.639Z (26 days ago)
- Topics: password-manager, python3, security
- Language: Python
- Homepage:
- Size: 29.3 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.