Modern Safe and Unique Password Generator. Do Not Worry About Passwords Anymore.
Report Bug
·
Request Feature
Table of Contents
AllSafe is a terminal tool to generate unique password for each application or website you want to sign up in.
Note
This tool will never store any of your data and does NOT need an internet connection. so you do not have to worry about your data-safety.
AllSafe will give you a unique password for every app based on the given info, so everytime you pass the same info, you will get the same password
with having a unique password for each website, you will not need to worry about other passwords in case one of the websites has a security breach or your password gets leaked somehow.
You don't, you just have to memorize your secret codes (safe enough to use one for all passwords). with the same secret code and the same data, you will get the same password. so no need to worry about storing or memorizing your passwords.
Your secret code will turn your data into some weird characters. the weird characters are encrypted into a hash. the algorithm gets rid of some keys in the hash. the incomplete hash is seperated into small parts based on the password length. each small part will be converted into a decimal number. each decimal number is divided by the number of usable characters, and a character will be chosen for the password based on the remainder.
No, even if they find a way to guess the hash, they will have the incomplete hash. although the complete hash is based on some weird characters.
- Install
pipx
: Use the package manager of your wish on your OS (e.g. apt)
sudo apt install pipx
pipx ensurepath
- Install
AllSafe
:
- Trust PyPi's Build?
pipx install allsafe
- Not Trust PyPi's Build?
pipx install git+https://github.com/emargi/allsafe
First, make sure you have python and pip installed on your system.
- Trust PyPi's Build?
pip install allsafe
- Not Trust PyPi's Build?
pip install git+https://github.com/emargi/allsafe
Run:
allsafe
or alternatively:
allsafe -i
required arguments:
allsafe -a APP -u USERNAME -s SECRET
see full help:
allsafe -h
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
Note that we use Semantic Versioning in the project and you have to change the __version__
variables in every file that contains it, before a commit.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Open a Pull Request
Distributed under the MIT License. See LICENSE.txt
for more information.
- This README file is based on Best-README-Template