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.
Installable via pip:
sudo pip install passflip
-
Start the program by running
passflip
as a command. -
Enter your master password (e.g.
byxor_rocks_1337
) -
Enter your salt (e.g.
twitter
)
The program will then give you your unique secured password for twitter.
-
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 <number>
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
- Linux:
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.